Помогите мне, пожалуйста, решить этот код :C - javascript
I want to create an js code that calculates the third number of a triangle. here's the code: <!DOCTYPE html> <html> <head> </head> <body> <h1 style="position: relative; left: 50px; top: 100px;"><span id="x">6</span></h1> <h1 style=" "><span id="y">8</span></h1> <h1 style="position: relative; left: 70px; top: -80px; "><span id="z">10</span></h1> <button>CLICK</button> <script> var x = document.querySelector("#x"); var y = document.querySelector("#y"); var z = document.querySelector("#z"); var btn = document.querySelector("button"); btn.addEventListener("click", function(){ x.innerHTML = Math.floor(Math.random()\*20 + 1); y.innerHTML = Math.floor(Math.random()\*20 + 1); z.innerHTML = Math.round(Math.sqrt(x\*x + y\*y)); }); </script> </body> </html>
Что я уже пробовал:
Я пытался превратить его в цифры, но, возможно, ошибся.