Computer Science, asked by krishna2093, 1 month ago

The result of math pow (2)is

Answers

Answered by agrim28
0

Answer:

Hope it helps in your study's!

Mark me as brain list please!

Explanation:

console.log(Math.pow(7, 3));

// expected output: 343

console.log(Math.pow(4, 0.5));

// expected output: 2

console.log(Math.pow(7, -2));

// expected output: 0.02040816326530612

//                  (1/49)

console.log(Math.pow(-7, 0.5));

// expected output: NaN

Similar questions