Guest User

Untitled

a guest
Jun 25th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. //ES5 syntax
  2. console.log('requiring notes.js file');
  3. module.exports.userAge = function(){
  4. return '25 years';
  5. }
  6.  
  7. //ES6 syntax. Use any one - ES5 above or this one.
  8. console.log('requiring notes.js file');
  9. module.exports.userHeight = () => {
  10. return '5.6 feets';
  11. }
Add Comment
Please, Sign In to add comment