blob: 8445558df997174455ffbf01cf7afb23903d92fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
debugger;
function a(x) {
var i = 10;
while (--i != 0);
debugger;
return i;
}
function b() {
return ['hello', 'world'].join(' ');
}
a();
a(1);
b();
b();
setInterval(function() {
}, 5000);
|