Import Exports

Run Settings
LanguageJavaScript
Language Version
Run Command
const {add} = require ("./add"); //versi es 6 const {multy} = require ("./multipy"); const x = 5; const y = 8; console.log(add(x,y)); console.log(multy(x,y));
const add = (a,b) => a+b; module.exports ={ add };
const multy = (a,b) => a *b; module.exports = { multy };
Editor Settings
Theme
Key bindings
Full width
Lines