const sqrt_1=Math.sqrt(2)
const sqrt_2=Math.sqrt(100)
const sqrt_3=Math.sqrt(144)
const sqrt_4=Math.sqrt(1024)
document.write('Math.sqrt()▶제곱근 √','<br>')
document.write('Math.sqrt(2) : ')
document.write(sqrt_1)
document.write('<br>','Math.sqrt(100) : ')
document.write(sqrt_2)
document.write('<br>','Math.abs(144) : ')
document.write(sqrt_3)
document.write('<br>','Math.sqrt(1024) : ')
document.write(sqrt_4)
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.