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...") |
m (Text replacement - "^" to "{{deprecated}}") |
||
(One intermediate revision by one other user not shown) | |||
Line 1: | Line 1: | ||
__NOTOC__ | {{deprecated}}__NOTOC__ | ||
Calculates ''x'' raised to the power of ''y''. | Calculates ''x'' raised to the power of ''y''. | ||
Line 10: | Line 10: | ||
== Parameters == | == Parameters == | ||
:{| | :{| class="wikitable" | ||
|- | |- | ||
| ''x'' || Initial value. | | ''x'' || Initial value. |
Latest revision as of 16:13, 13 September 2022
This Wiki is deprecated and we are are currrently migrating remaining pages into product documentation (Admin Guide, NXSL Guide) |
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