I was perusing the underscore.js library and I found something I haven't come across before:
if (obj.length === +obj.length) { ... }
What is that + operator doing there? For context, here is a direct link to that part of the file.
|
I was perusing the underscore.js library and I found something I haven't come across before:
What is that |
||||
|
The unary |
|||||
|
|
It's a way of ensuring that obj.length is a number rather than a potential string. The reason for this is that the === will fail if the length (for whatever reason) is a string variable, e.g. "3". |
|||
|
|
|
According to MDN:
|
|||
|
|
|
It's a nice hack to check whether
This is possible because the In addition, JavaScript has two types of equality and inequality operators:
Strict equality and inequality doesn't coerce the value. Hence the number Now, the above code simply coerces
|
|||||||||
|
===with a type conversion. – jfriend00 Nov 30 '11 at 18:00===by convention everywhere and it is good practice. – Wojciech Bednarski Nov 30 '11 at 18:02