Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. let foo=45;
  2. module.exports = { foo };
  3.  
  4. let func=require('./function.js');
  5. console.log(func.foo); // Now you can see 45
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement