pull/359/merge
JanWarlen 7 months ago committed by GitHub
commit 59d427c9ef
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1670,12 +1670,12 @@ function letsLearnScope() {
let a = 'Python' let a = 'Python'
let b = 20 let b = 20
let d = 40 let d = 40
console.log(a, b, c) // Python 20 30 console.log(a, b, c, d) // Python 20 30 40
} }
// we can not access c because c's scope is only the if block console.log(a, b, c) // JavaScript 10 30
console.log(a, b) // JavaScript 10
} }
letsLearnScope() letsLearnScope()
// we can not access c because c's scope is only the function 'letsLearnScope' block
console.log(a, b) // JavaScript 10, accessible console.log(a, b) // JavaScript 10, accessible
``` ```

Loading…
Cancel
Save