e
undefined
function stackoverflow() { stackoverflow() } stackoverflow()
RangeError: Maximum call stack size exceeded
console.log("test")
it will reply with what was returned, so this will work:
"test"
SyntaxError: Unexpected token 'with'
spoiler: it didn’t.
function* square_increment(){ var value = 1; while(true){ yield value*value; value ++; } } let square = square_increment();square.next().value;square.next().value;
4
throw new URIError("lol")
URIError: lol
alert(1)
ReferenceError: alert is not defined
1/0
Infinity
async function e() {return "a"};e()
VMError: Async not available
function f() { try { f() } catch (e) { f() } }
var fs = require('fs');fs.readFileSync('demofile1.html')
function yay(sine) {return Math.sin(sine)};yay(3);
0.1411200080598672
3
2
a