console.log("Hello World")
this["global"] = null; eval
function () { [native code] }
alert(‘there is a million ways this could be bad‘)
SyntaxError: Invalid or unexpected token
let x = {__proto__: null}
SyntaxError: Unexpected token '&'
let = 1;
let let = 1;
SyntaxError: let is disallowed as a lexically bound name

D:<

let = 1,
delete Symbol; // ok that's enough
Symbol()
function Symbol() { [native code] }
throw require('fs')
ReferenceError: require is not defined
throw Symbol();
Load more comments