Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. function run() {
  2. if (true) {
  3. var x = 'tron';
  4. }
  5. console.log("i'm running " + x);
  6.  
  7. if (true) {
  8. let y = 'nano';
  9. }
  10. console.log("i'm running " + y);
  11. }
  12.  
  13. run();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement