Advertisement
Guest User

Untitled

a guest
Jul 25th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. //ES2015
  2. function VideoGame(){
  3. this.title = "Uncharted";
  4. this.version = 3;
  5.  
  6. setInterval(() => {
  7. console.log(this.title + " " + this.version++); // |this| properly refers to the VideoGame object
  8. }, 5000);
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement