Advertisement
Guest User

Untitled

a guest
Jun 15th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. if (true) {
  2. //const name = 'David';
  3. } else {
  4. console.log('no name');
  5. }
  6.  
  7. for (let i = 0; i < 10; i += 1) {
  8. let product = 0;
  9. product += i * i;
  10. console.log(product);
  11. }
  12.  
  13. const worker = () => {
  14. var name = 'Jason';
  15. }
  16.  
  17. var name = 'drake';
  18. console.log(name);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement