offline version v3


⊗jsPmSMMP 184 of 502 menu

Pow and sqrt in JavaScript

Math.pow Math.sqrt

Raise 2 to the power of 10.

Find the square root of 245.

Given the following array:

[4, 2, 5, 19, 13, 0, 10]

Find the square root of the sum of the cubes of its elements. Use the for loop to solve.

enru