Object.keys(globalThis.global).join(", ")
global, Function, eval
Object.keys(globalThis).join(",")
global,Function,eval
the global variable existing seems to imply this is running in node
global
Object.keys(window).join(",")
ReferenceError: window is not defined
undefined
alert("amongst ourselves");
ReferenceError: alert is not defined
async function go(){return await (await import("node-fetch"))(("https://api.ipify.org").then(e=>e.text()))} go()
SyntaxError: Unexpected token '&'
async function go(){return await fetch("https://api.ipify.org").then(e=>e.text())} go()
async function go(){return await fetch(“api.ipify.org”).then(e=>e.text())} go()
SyntaxError: Unexpected character '“'
async (await fetch(“api.ipify.org”).then(e=>e.text()))()
SyntaxError: Unexpected identifier
await fetch(“api.ipify.org”).then(e=>e.text())
SyntaxError: await is only valid in async functions and the top level bodies of modules
"test\ntest"
test test
L
“test\ntest”
lmao i’m braindead
"fungus"
fungus
alert(“alert is the only JavaScript I know”)
SyntaxError: Invalid or unexpected token
"four. big."+" guys."
four. big. guys.