Guest User

Untitled

a guest
May 24th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. function foo() {
  2. var a = 1;
  3. if (a >= 0) {
  4. let b = 2;
  5. console.log(a); // cetak nilai variabel a di console
  6. console.log(b); // cetak nilai variabel b di console
  7. }
  8. console.log(a); // cetak nilai variabel a di console
  9. console.log(b); // Error, variabel b tidak dikenali
  10. }
  11. foo();
Add Comment
Please, Sign In to add comment