1
0
forked from Mirror/wren

Docs for Num.log and Num.pow().

This commit is contained in:
Bob Nystrom
2017-01-20 07:24:46 -08:00
parent 3faec25c4c
commit 4fe3ad3f8b

View File

@ -89,6 +89,14 @@ Whether the number is [not a number](http://en.wikipedia.org/wiki/NaN). This is
`false` for normal number values and infinities, and `true` for the result of
`0/0`, the square root of a negative number, etc.
### **log**
The natural logarithm of the number.
### **pow**(power)
Raises this number (the base) to `power`. Returns `nan` if the base is negative.
### **sin**
The sine of the number.