Guest User

Untitled

a guest
May 28th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. exports.MyLib = function(name){
  2. this.name = name
  3. }
  4.  
  5. exports.MyLib.prototype.sayHello = function() {
  6. return "Hello " + this.name
  7. }
Add Comment
Please, Sign In to add comment