'pow()' Syntax, Parameters and Note : pow « Javascript Methods « JavaScript Reference

'pow()' Syntax, Parameters and Note

Note:

Calculate the power.
    
Syntax:
    
Math.pow(param1, param2)

Parameters:
    param1   Required; the number to use as the base.
    param2   Required; the number to use as the exponent.

    

      
      








Related examples in the same category

1.'pow()' Example
2.'pow()' is applied to