Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. function Person(name){
  2. this.name = name
  3. }
  4.  
  5. Person.prototype = {
  6. //先將 constructor 設置好
  7. constructor: Person,
  8. sayHello: function(){
  9. console.log(`Hello ${this.name}`)
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement