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

Object.keys(window).join(",")
ReferenceError: window is not defined
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()
SyntaxError: Unexpected token '&'
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

await fetch(“api.ipify.org”).then(e=>e.text())

Code must be enclosed in code blocks!
"test\ntest"

“test\ntest”

Code must be enclosed in code blocks!

lmao i’m braindead

"fungus"
alert(“alert is the only JavaScript I know”)
SyntaxError: Invalid or unexpected token
"four. big."+" guys."
four. big. guys.
Load more comments