im trying to run some very basic javascript on a click event and im getting an undefined function error
<html> <head> </head> <body> <script> function x() { console.log (thisWorks) } </script> <button onclick=”x()”></button> </body> </html> my hopes were that clicking the button would trigger the console command and i could add more code, but when i click it i get an error that looks like this error message im using opera GX browser about:blank […]