You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
191 B

// wrapper line
debugger;
debugger;
function a(x) {
var i = 10;
while (--i != 0);
debugger;
return i;
};
function b() {
return ['hello', 'world'].join(' ');
};
a();
a(1);
b();
b();