Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 324 Bytes

File metadata and controls

21 lines (17 loc) · 324 Bytes

Math::Pow

Math::Pow(x, y): number

Calculates x raised to the power of y.

Table 1. Parameters

x

number

Base

y

number

Power

Return

x raised to the power of y.

println(Math::Pow(2.5, 3.1)); // Will print "17.124347"