Guest User

Untitled

a guest
Jan 19th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. Test = {
  2. one : function() { return this.two() },
  3. two : function() { return 'hello'; }
  4. }
  5. alert(Test.two());
  6. alert(Test.one());
Add Comment
Please, Sign In to add comment