aboutsummaryrefslogtreecommitdiffstats
path: root/signaling-server/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/forstatement.js
blob: d2a14f9528a684c05694cac1b5ae8a4052e8aea0 (plain)
1
2
3
4
5
6
7
8
9
10
a=func();
b=z;
for (a++; i < 10; i++) { alert(i); }

var z=1;
g=2;
for (; i < 10; i++) { alert(i); }

var a = 2;
for (var i = 1; i < 10; i++) { alert(i); }