Files
2018-08-02 17:53:23 +01:00

31 lines
251 B
JavaScript

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