-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path38_scope.js
executable file
·38 lines (33 loc) · 931 Bytes
/
38_scope.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//scope merupakan area akses sebuah data
//2 jenis scope, global dan local
//setiap membuat function, kita membuat local scope utk function tsb
//data global scope bs diakses dari local scope
//sedangkan local scope tdk bs diakses dr global scope
//contoh penjelasan:
let counter=0; //ini global scope
function hitMe(){ //ini global scope
console.log(`dipukul ${counter++}`); //ini local scope hitMe
}
function other(){ //ini global scope juga
console.log("dipukul other"); //ini lokal scope
}
hitMe();
hitMe();
hitMe();
//contoh lain:
function first(){
// let firstVar ="asalnya dari first";
}
let a=first;
console.log(a);
//---------------------
function pertamak(){
let vari1="pertamaks";
function firstNested(){
console.log(`ini adalah ${vari1}`);
}
firstNested();
}
pertamak();
//atas bisa akses bawahnya (global bs akses local)
//-tetapi tidak sebaliknya. bawah tidak bs akses atasnya (local akses global)