Can I "execute" javascript in deno?
Let's say there is a line like this
and I'm able to get the innerText
(...)
can I execute the javascript in deno?2 Replies
No, this script uses DOM API which are not available in Deno
Yes, if the script only uses APIs available in Deno
globalThis.document
doesn't exist in Deno though