Advertisement
Guest User

Untitled

a guest
Apr 8th, 2020
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  var john = {
  2.     firstName: 'John',
  3.     lastName: 'Smith',
  4.     mass: 80,
  5.     height: 1.69,
  6.    
  7.  
  8.     calculatebmi: function() {
  9.         this.BMI = this.mass / (this.height * this.height);
  10.     }
  11.  
  12.  };
  13.  console.log(john)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement