mirror of
https://github.com/github/codeql.git
synced 2025-12-18 18:10:39 +01:00
12 lines
156 B
JavaScript
12 lines
156 B
JavaScript
function f(x) {
|
|
console.log(x); // OK
|
|
}
|
|
|
|
console.log(x); // NOT OK
|
|
var x = 1;
|
|
|
|
function g() {
|
|
console.log(y); // OK (not in same function)
|
|
}
|
|
var y = 1;
|