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

Share this project:

Updates