Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Js

Idiom #79 Convert integer to floating point number

Declare the floating point number y and initialize it with the value of the integer x .

let y = x + .0

You might say "Wait! All JavaScript numbers are floats!"
They certainly always behave like they are on the outside, but on the inside they treat some numbers as integers.
Y : constant Float := Float (X);

New implementation...