Example:
0.1 + 0.2; // 0.300000004
This is not just a javascript language limitation but also a limitation for many other programming languages(C or Java or C++) . This is a problem with the format(IEEE 754 -binary floating point) that computers internally use to represent the numbers. This format cannot represent the numbers like 0.1 or 0.2 accurately because they store the numbers in binary and floating number cannot store all the decimal numbers properly For Example, 0.1 would be coverted in the following way
0.1 = 1/10 => 1/16 + (1/10-1/16) => 1/32 + (0.0375-1/32) ....so on
and the ultimate result would be around 0.1000000000000000055511151231257827021181583404541015625
So when the code is compiled or transpiled or interpreted,0.1 will be rounded/chopped off to nearest number in the representable binary format and hence when arithmetic operations are performed , there can be small rounding errors .Hence we get 0.300000004 instead of 0.3, when we add 0.1 and 0.2 . For more detailed explanation,check out this paper by David Goldberg and article
There is a simple fix to this issue as shown below
var a = 0.1 + 0.2; //0.300000004
var b = +(0.1 + 0.2).toFixed(1); //round off to avoid errorneous value and convert it back to number by using +
//b = 0.3
Alternatively, if you want to compare floating point values, you can use this solution from Kyle Simpson's "You Don't Know JS" which uses what is commonly known as "machine epsilon" as a tolerance value.
function numbersCloseEnoughToEqual(n1,n2) {
return Math.abs( n1 - n2 ) < Number.EPSILON;
}
numbersCloseEnoughToEqual( a, b ); // true
numbersCloseEnoughToEqual( 0.0000001, 0.0000002 );
Polyfill for Number.EPSILON
pre-ES6:
if (!Number.EPSILON) {
Number.EPSILON = Math.pow(2,-52);
}
=======
Example:
(!+[] + [] + ![]).length; // 9
JavaScript does operations from right to left. The + operand first tries to add the left to the right, if that isn't possible it tries to convert the operand on the right to a number and if it can't do that it converts it to a string. If there is something to the left of the + it adds them together, and if it can't it sticks around. If there is nothing to the left it goes away. The ! operand converts the operand to the right to a boolean and then reverts it. The detailed explaniation see also the test.
expect(!+[] + [] + ![])
.toBe((!+[]) + ([]) + (![]))
.toBe('true' + '' + 'false')
.toHaveLength(9);
For more detailed explanation,check out this by Tomas Forsman