+ 5
Help i can see why thus isnt working
why isn't this code working https://code.sololearn.com/W17lXrd17k6z/?ref=app
5 Answers
+ 11
You're welcome!
var calc = prompt("Please enter a number to find root:");
document.write("All about your numbers are: " +
" square root is " + Math.sqrt(calc) +
" sine is " + Math.sin(calc) +
" cosine is " + Math.cos(calc) +
" tangent is " + Math.tan(calc));
+ 9
The first line of your document.write() statement is missing a +, and the last line has an extra + at the end.
+ 4
thanks
+ 4
thank u very very very very much
+ 3
can u modify it and send back