I was wondering about the way JavaScript handles floating points.
I.e. suppose I set 5 variables to (no decimal numbers):
var a = 1/2, b = 1/3, c = 1/12, d = 1/12, e = 0;
Is the sum of these guaranteed to be 1?
The attached answer does not answer my question, I want to distinguish declaring variables of decimal number with defining them as stated above (0.5 vs. 1/2)