JavaScript program to find the square root of a number:

python tutorials and learn python

Created with Sketch.

JavaScript program to find the square root of a number:

let number = 16;
let squareRoot = Math.sqrt(number);
console.log("The square root of " + number + " is " + squareRoot);

Leave a Reply

Your email address will not be published. Required fields are marked *