mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +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;
|