Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 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 = null;
  6.  
  7. console.log(x); //null
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement