0
Uncaught RangeError: Maximum call stack size exceeded
https://code.sololearn.com/WFpSxeizmWf3/#html Why does this not work?
1 Resposta
+ 2
Don't use built-in functions (e.g. "alert") as names for variables/functions.
HTML
<button onclick="test()">Alert</button>
JAVASCRIPT
function test(){
alert("Alert");
}