Guest User

Untitled

a guest
Jan 22nd, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. var Animal = {
  2. Dog : {/* lots of stuff here */},
  3. Cat : {
  4. list : ["Mistigri", "Felix"],
  5. show : function() {
  6. /* This is where it gets long */
  7. console.log(Animal.Cat.list.join());
  8. }
  9. }
  10. };
Add Comment
Please, Sign In to add comment