Number Values


Description
Numbers are always 64-bit Floating Point. They can be written with or without decimals.

Extra large or extra small numbers can be written with scientific (exponent) notation.
Example Code
var x = 3 // An integer. var y = 3.14 // A fraction. var x = 123e5 // 12300000 var y = 123e-5 // 0.00123