Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. var a = 10;
  2. const c = 15;
  3.  
  4. function print() {
  5. let b = 11;
  6. const d = 20;
  7.  
  8. c = 18; // here we got error for constant variable's value update or change
  9. console.log(a); // here a print as 10
  10. console.log(b); // here b print as 11
  11. console.log(c); // here c print as 15
  12. console.log(d); // here c print as 20
  13. }
  14.  
  15. console.log(a); // here a print as 10
  16. console.log(b) // here b print undefined
  17. console.log(c) // here c print 15
  18. console.log(d); // here d print as undefined
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement