javascript program to find the square rootjavascript program to find the square root
// prompt user for a number let num = prompt(“Enter a number: “); // calculate the square root let sqrt = Math.sqrt(num); // display the result console.log(`The square root of