Files
2025-03-10 14:23:40 +01:00

24 lines
211 B
JavaScript

g = 23; // $ Alert
h = 23;
alert(h);
uid = 0;
function incr() {
return uid++;
}
function foo() {
var x;
x = 0;
}
onload = function() {}
global = 42;
prop = 42;
/*global otherGlobal*/
otherGlobal = 56;