What is the typeof funtion?
|
feedback
|
|
It can look like a function, because it can be applied to parenthesised expressions, but the parentheses are not mandatory, you can use it without them:
Is worth mentioning that you can reference even an identifier that is not declared (an unresolvable reference, e.g. a variable never declared) and it will not throw a
A case that can cause confusion to newcomers to the language is that the Also if you want to distinguish between [1] With the infamous exception of JScript (IE) :), which can actually return | ||||
|
feedback
|
The
|
There is a function, dltypeof() that addresses most of these issues: webreference.com/dhtml/column68 Note that an additional check for the presence of push is required near the end to catch arrays that weren't constructed with new Array(). – Stan Rogers Oct 11 '10 at 8:29 |
|
@Stan Rogers: well, first browser I tried (Google Chrome 6) doesn't support it, so I wouldn't advise to use that. For array detection, Dojo's isArray() and isArrayLike() is good enough for me, if I'm in an environment where using a lib is an option. Otherwise, just rolling out your own implementation is fine. – haylem Oct 11 '10 at 8:35 |
|
@Stan Rogers: OK I assume you were mentioning an addition to the JS spec, but I noticed it's just a library, apparently. Then in that case I guess it's up to you, but I'd stick to the standard and a more full-blown framework if I need that, and use dltypeof.js only if I need a similar functionality in a small script. – haylem Oct 11 '10 at 8:37 |
|
Odd -- it works in my copies of Chrome 6 (and Firefox, Safari, Opera and IE 6, 7 and 8) across five machines. And I've yet to find a project that warranted the Dojo tax (or jQuery) -- I consider it a major failure if an entire page with all resources is that heavy. But I have to deal with remote dialup and satellite (the Great White North is still pretty empty in a lot of places). – Stan Rogers Oct 11 '10 at 9:20 |
|
@Stan Rogers: actually I'm on Chrome 7.0.517.24 beta, but still. Doesn't work either for FF 3.6. Maybe you're just trying it on a page that embeds it? Sure, Dojo or jQuery is way overkill if it's just for that, but for the type of enterprise software I've been working on, using Dojo is justified and then it comes with that sort of convenience functions. Otherwise, like I said, re-implementing it or including dltypeof.js would make sense. – haylem Oct 11 '10 at 9:44 |
|
The typeof operator returns a string indicating the type of the operand. | |||
|
feedback
|
typeofis actually an operator, not a JavaScript function. – BoltClock♦ Oct 11 '10 at 7:05