All names in the JavaScript Math
library are predeclared in Source. The
complete specifications are given in
ECMAScript
Specification, Section 20.2, and a summary is available here, by clicking
on the names on the right.
As learner of Source, you are not expected to learn all of these, right away. But
you might want to remember where you can look for them: Here!
Click on a name to see how it is defined and used.
If the argument x is NaN, +0, -0, +∞, or -∞, ToUint32(x) return +0.
Otherwise, let int
be the mathematical value that is the same sign as number and
whose magnitude is math_floor(math_abs(x))
. ToUint32(x) returns int
modulo 232.