0
Calculator
My buttons are not working of the calculator when I press the buttons https://sololearn.com/compiler-playground/WG2rV3Q95aSC/?ref=app
1 ответ
+ 1
Did you write this ode by yourself??
Line 6 of JS: "element" is not defined. It iterator is "buttons" according to line 4.
Line 19 of JS: There is no html element with that id?
JS can only access the html elements once the DOM is fully loaded. You can, for instance, wrap all your JS in
window.onload = () => {
...
}