mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
12 lines
151 B
JavaScript
12 lines
151 B
JavaScript
function f(x) {
|
|
console.log(x);
|
|
}
|
|
|
|
console.log(x); // $ Alert
|
|
var x = 1;
|
|
|
|
function g() {
|
|
console.log(y); // OK - not in same function
|
|
}
|
|
var y = 1;
|