Guest User

Untitled

a guest
Sep 19th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. // entry.js
  2.  
  3. function Entry (title) {
  4. this.title = title;
  5. }
  6.  
  7. Entry.prototype = {
  8. title: null;
  9. }
  10.  
  11. module.exports = Entry;
  12.  
  13. // test.js
  14.  
  15. var Entry = require('./entry')
  16. , entry = new Entry('first entry');
  17.  
  18. console.log(entry.title);
  19.  
  20. // shell
  21. node test.js
Add Comment
Please, Sign In to add comment