Quick actions

cmd+k|ctrl+k

Navigation

Languages

Named Export/Imports

Snippet info

Language

JavaScript

Visibility

public

Author

sanjivrai543

Created

2020-10-26T21:49:15Z

Updated

2020-10-26T21:50:42Z

//all the imports should be mentioned at hte top of the script
//import * as Math from './dio';
//import {add,divide} as Math from "./dio";
console.log(Math.add(2,3));
INFO