Advertisement
Guest User

Untitled

a guest
Nov 2nd, 2014
273
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function Game() {
  2.     this.name = 'Not probably a game.';
  3.     this.player = new Player(this);
  4.     this.create = function() {
  5.         alert('Show must go on.');
  6.     }
  7. }
  8.  
  9. function Player(game) {
  10.     alert(game.name);
  11.     game.create();
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement