Dart library

1)dart:io File, socket, HTTP, and other I/O support for server applications. This library does not work in browser-based applications. This library is imported by default. 2)dart:core Built-in types, collections, and other core functionality for every Dart program. This library is automatically imported. 3)dart: math Mathematical constants and functions, plus a random number generator. 4)dart: convert… Continue reading Dart library

How can we use import and export module in JavaScript

In JavaScript, Modules are basically libraries which are included in the given program. We can connect two JavaScript programs together to call the functions written in one program without writing the body of the functions itself in another program. Importing a library: It means include a library in a program so that use the function is… Continue reading How can we use import and export module in JavaScript