Please could you help me!?
What this does this statement is mean :
return Math.round(Math.pow(Math.sqrt(a) + Math.sqrt(b), 2));
This is in #curriculum-help:javascript (Basic JavaScript)
Chick this exercise link to learn more:
Please could you help me!?
What this does this statement is mean :
return Math.round(Math.pow(Math.sqrt(a) + Math.sqrt(b), 2));
This is in #curriculum-help:javascript (Basic JavaScript)
Chick this exercise link to learn more:
It’s taking the square root of a and adding it to the square root of b, the taking all of that and raising it to the second power (squaring it). Then it’s rounding that off.