Calculate the square root of each element in an array.
> sqrt([1, 4, 9, 16])[1, 2, 3, 4] Copy
> sqrt([1, 4, 9, 16])[1, 2, 3, 4]
The array of numbers.
An array with the square root of each input element.
Calculate the square root of each element in an array.
Example