Files
kredits-web/test.js
T
2019-04-17 22:48:38 +02:00

10 lines
127 B
JavaScript

function foo() {
setTimeout(foo, 2000);
throw new Error('hallo');
console.log('still here');
}
setTimeout(foo, 1000);