JavaScript - Floatingpoint constant

Signed decimal number, is made from whole and fractional part . in addition, we have the option to enter the floating point number with a decimal exponent.

floatingpoint constant

Description

 12.345

Output

Examples

JavaScript

Floatingpoint constant the possible of use:
x = 1.234;         // x = 1.234
y = x * 3.14;      // y = 3.87476
if (y<5)
   y = y/ 3.14;    // y = 1.234

JavaScript

Other pieces of example codes:
j * 0.5
1.9
3.14
9.9
x / 0.5
1.14 > x

You can find it in the following collections: constants
Languages: en hu cz sk