Difference between revisions of "NXSL:pow"
Jump to navigation
Jump to search
(Created page with "__NOTOC__ Calculates ''x'' raised to the power of ''y''. == Syntax == pow(''x'', ''y''); == Parameters == :{| |- | ''x'' || Initial value. |- | ''y'' || Power. |} == R...") |
(No difference)
|
Revision as of 21:24, 21 April 2012
Calculates x raised to the power of y.
Syntax
pow(x, y);
Parameters
x Initial value. y Power.
Return Value
x raised to the power of y.
Examples
pow(2, 3) -> 8