Could someone please explain the following?
[] instanceof Array; // true
'' instanceof String; // false
|
Could someone please explain the following?
|
||||
|
Note the following:
|
|||||||||||||||||
|
|
It's because Some primitives in JavaScript can have an object wrapper. These are created when you make an instance of the wrapper using the built in constructor with The
The primitives that have Object wrappers are The primitives that do not are |
|||||||||||||||||
|
|
Anything created with To check for strings, etc., use
To check for both, use this:
There are a couple of reasons to use
This is what jQuery and other large, popular libraries do. |
|||
|
|
|
I've done some digging and I suppose it has to do with string interning which is a compiler optimization. Okay, ready for some gotchas? :D
I suppose this is true because of "string interning" which coincidentally also makes a lot of sense, conceptually (yay for getting 'strings' right).
This makes sense if you assume a And now for the kicker:
So apparently the JavaScript interpreter will always prefer string interning over the use of the Then I must ask, what is the use of the |
|||||
|
typeof ""is"string"andtypeof []is"object"(you'd expect"array"but alright I can live with that) – Frits van Campen Dec 20 '11 at 0:24"".constructor === String. – pimvdb Dec 20 '11 at 15:22