What it does
code for finding the square root
How we built it
using javascript
const number = prompt('enter the number: ');
const result =Math.sqrt(number);
console.log('the square root of ${number} is ${result}');
Built With
- javascript
- tabnine
find the square root code using js
code for finding the square root
using javascript
const number = prompt('enter the number: ');
const result =Math.sqrt(number);
console.log('the square root of ${number} is ${result}');
Log in or sign up for Devpost to join the conversation.