Quick actions

cmd+k|ctrl+k

Navigation

Languages

dicoding.com - Variable Scope

Snippet info

Language

JavaScript

Visibility

public

Author

rzqbuchek

Created

2020-07-27T08:38:07Z

Updated

2020-07-27T08:38:07Z

// global variable, dapat diakses pada parent() dan child()
const a = 'a'; 

function parent() {
    // local variable, dapat diakses pada parent() dan child(), tetapi tidak dapat diakses diluar dari fungsi tersebut.
    const b = 'b'; 
    
    function child() {
        // local varible, dapat diakses hanya pada fungsi child().
        const c = 'c';
    }
}
INFO