Advertisement
dhshin

practice_1

Jun 26th, 2018
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. let x;
  2. let y = 2.5;
  3. let Condition = false;
  4. let under_bar_string = 'string';
  5. let variable1234 = null;
  6.  
  7. console.log(x);
  8. console.log(y, Condition);
  9. console.log(under_bar_string);
  10. console.log(variable1234);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement