paint-brush
JS WTF šŸ¦„ with Numberā€‚by@ferreiratiago
1,208 reads
1,208 reads

JS WTF šŸ¦„ with Number

by Tiago Lopes FerreiraSeptember 25th, 2017
Read on Terminal Reader
Read this story w/o Javascript
tldt arrow

Too Long; Didn't Read

<iframe src="/gist.html?url=https%3A%2F%2Fgist.github.com%2Fferreiratiago%2F371959e1b97885ef3a42230e002ec4a2.js" class="gist-iframe" allowfullscreen="" frameborder="0" height="134" width="700"></iframe>
featured image - JS WTF šŸ¦„ with Number
Tiago Lopes Ferreira HackerNoon profile picture

Time to ride on some JavaScript WTF withĀ Number.

ā€˜0.0ā€™

When converting a String into a Number, JS is able to interpret a **period** before or after a numeric value as the period of a decimal number. Thatā€™s why the get 0 as the result for the first two expressions.

Both '0.' and '.0' represent the decimal 0.0.

Hereā€™s the specification:

I know. I know. Too muchĀ detail!

However, ā€œi_f the grammar_ cannot interpret the String as an expansion of StringNumericLiteral, then the result of ToNumber is NaN.ā€, which explains the result for Number('.').

i.e. the expression '.' does not match any of the string literals highlighted in the red box above.

{} vsĀ []

When Number is applied to an Object JavaScript tries to convert it to a primitive value.

By specification, it first executesĀ .valueOf().

BecauseĀ .valueOf() of both {} and [] also return an object, JS triesĀ .toString().

The reason for this WTF lies on the result ofĀ .toString().

The operation ({}).toString() actually runs Object.prototype.toString() which by definition is "[object Object]". However, as we saw before, converting a String into a Number returns NaN when it cannot be interpret into a numeric value_._ This explains out first result Number({}) // NaN.

As for [].toString(), it executes Array.prototype.toString() and outputs "". By definition, Number("") is 0.

Therefore Number([]) is 0.

Ok! Letā€™s take a break and watch this kitties šŸ‘€

undefined vsĀ null

According ToBoolean both null and undefined represent the absence of something, meaning false.

However, we can see undefined as more generic ā€œabsence.ā€ This is because it is used to represent a variableā€™s value when no other value has been assigned.

undefined, a variable has been declared but no formal value has been assigned.

null, on the other hand, is an assignment value. It can be assigned to a variable as a representation of ā€œno value.ā€

null, a variable has been declared but has an emptyĀ value.

Moreover, they have a different typeof.

Because of this I came to believe that this is why undefined is converted into a NaN when executing Number(undefined), meaning no value assigned.

And null to the value 0, meaning a falsy representation of a value.

MIN_VALUE

Itā€™s easy to understand that [Number.MAX_VALUE](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/MAX_VALUE) is bigger than 0 but itā€™s weird to realise that [Number.MIN_VALUE](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/MIN_VALUE) is not smaller than 0.

Thatā€™s because Number.MIN_VALUE is not actually the minimum value possible**,** but the minimum positive value possible, which is a very very very small value (5e-324 to be specific), however bigger than 0.

To represent the minimum value possible we can safely use [Number.MIN_SAFE_INTEGER](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/MIN_SAFE_INTEGER) i.e. -(2^53ā€“1)

toFixed()

Having a period on a numeric value is the way to say that it has a fractional part. However, this makes the use of static methods inconsistent.

For the expression 42.toFixed(2), because the numeric value 42. is a valid number, JS moves forward on interpreting the full expression. However, it finds toFixed(2), which has no meaningful value (as opposed to the expressionĀ .toFixed(2), which represents the execution of a static method.) and throws a syntax error.

Even a space between 42. and toFixed(2) does not solves the problem.

However, a space between 42 andĀ .toFixed(2) solves the problem. Or even a double period 42..toFixed(2) šŸ˜®

42.toFixed(2)Ā !== 42..toFixed(2)

Nevertheless, this is how JS interprets the code.

< your WTFĀ >

If you find any WTF that should be here, please let me know šŸ‘

Thatā€™s all forĀ Number.

Thanks toĀ šŸ»

Be sure to check out my other articles on JS WTF


JS WTF šŸ¦„ with Arrays_Letā€™s ride on some WTF with JavaScript Arrays._hackernoon.com