Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. var x = ['Get to the choppa !', 'Get over here !'];
  2.  
  3. console.log(x); //[ 'Get to the choppa !', 'Get over here !' ]
  4.  
  5. x = undefined;
  6.  
  7. console.log(x); //undefined
  8.  
  9. function nothing(){"I can't do that !"};
  10.  
  11. nothing(); //undefined
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement