vote up 201 vote down star
320

What "Hidden Features" of JavaScript do you think every programmer should know?

After having seen the excellent quality of the answers to the following questions I thought it was time to ask it for JavaScript.

Even though JavaScript is arguably the most important Client Side language right now (just ask Google) it's surprising how little most web developers appreciate how powerful it really is.

flag
1  
Sure, pessimist. :) I'd considered making this a community question. Also, after you get a certain number of points it's all diminishing returns. – Allain Lalonde Sep 14 '08 at 18:37
1  
I've been writing JavaScript professionally for 10 years now and I learned a thing or three from this thread. Thanks, Alan! – Andrew Hedges Sep 20 '08 at 7:39
show 4 more comments

98 Answers

vote up 1 vote down

This seems to only work on Firefox (SpiderMonkey). Inside a function:

  • arguments[-2] gives the number of arguments (same as arguments.length)
  • arguments[-3] gives the function that was called (same as arguments.callee)
link|flag
vote up 0 vote down

Syntactic sugar: in-line for-loop closures

var i;

for (i = 0; i < 10; i++) (function ()
{
    // do something with i
}());

Breaks almost all of Douglas Crockford's code-conventions, but I think it's quite nice to look at, never the less :)


Alternative:

var i;

for (i = 0; i < 10; i++) (function (j)
{
    // do something with j
}(i));
link|flag
show 4 more comments
vote up 2 vote down

You can turn "any* object with integer properties, and a length property into an array proper, and thus endow it with all array methods such as push, pop, splice, map, filter, reduce, etc.

Array.prototype.slice.call({"0":"foo", "1":"bar", 2:"baz", "length":3 })

// returns ["foo", "bar", "baz"]

This works with jQuery objects, html collections, and Array objects from other frames (as one possible solution to the whole array type thing). I say, if it's got a length property, you can turn it into an array and it doesn't matter. There's lots of non array objects with a length property, beyond the arguments object.

link|flag
vote up 10 vote down

You may catch exceptions depending on their type. Quoted from MDC:

try {
   myroutine(); // may throw three exceptions
} catch (e if e instanceof TypeError) {
   // statements to handle TypeError exceptions
} catch (e if e instanceof RangeError) {
   // statements to handle RangeError exceptions
} catch (e if e instanceof EvalError) {
   // statements to handle EvalError exceptions
} catch (e) {
   // statements to handle any unspecified exceptions
   logMyErrors(e); // pass exception object to error handler
}
link|flag
1  
I couldn't help it: catch (me if youCan) – Ates Goral Jan 29 at 5:24
show 2 more comments
vote up 9 vote down

You can use objects instead of switches most of the time.

function getInnerText(o){
    return o === null? null : {
        string: o,
        array: o.map(innerText).join(""),
        object:innerText(o["childNodes"])
    }[typeof o];
}
link|flag
show 2 more comments
vote up 0 vote down

There is also an almost unknown JavaScript syntax:

var a;
a=alert(5),7;
alert(a);    // alerts undefined
a=7,alert(5);
alert(a);    // alerts 7

a=(3,6);
alert(a);    // alerts 6

More about this here.

link|flag
vote up 3 vote down

Large loops are faster in a while condition and backwards - that is, if the order of the loop doesn't matter to you. In about 50% of my code, it usually doesn't.

i.e.

var i, len = 100000;

for (var i = 0; i < len; i++) {
  // do stuff
}

Is slower than:

i = len;
while (i--) {
  // do stuff
}
link|flag
show 5 more comments
vote up 4 vote down

Microsofts gift to JavaScript: AJAX

AJAXCall('http://www.abcd.com/')

function AJAXCall(url) {
 var client = new XMLHttpRequest();
 client.onreadystatechange = handlerFunc;
 client.open("GET", url);
 client.send();
}

function handlerFunc() {
 if(this.readyState == 4 && this.status == 200) {
 if(this.responseXML != null)
   document.write(this.responseXML)
 }
}
link|flag
vote up 12 vote down

When you want to remove an element from an array, one can use the delete operator, as such:

var numbers = [1,2,3,4,5];
delete numbers[3];
//numbers is now [1,2,3,undefined,5]

As you can see, the element was removed, but a hole was left in the array since the element was replaced with an undefined value.

Thus, to work around this problem, instead of using delete, use the splice array method...as such:

var numbers = [1,2,3,4,5];
numbers.splice(3,1);
//numbers is now [1,2,3,5]

The first argument of splice is an ordinal in the array [index], and the second is the number of elements to delete.

link|flag
vote up 5 vote down

Be sure to use the hasOwnProperty method when iterating through an object's properties:

for (p in anObject) {
    if (anObject.hasOwnProperty(p)) {
        //Do stuff with p here
    }
}

This is done so that you will only access the direct properties of anObject, and not use the properties that are down the prototype chain.

link|flag
vote up 2 vote down

window.name's value persists across page changes, can be read by the parent window if in same domain (if in an iframe, use document.getElementById("your frame's ID").contentWindow.name to access it), and is limited only by available memory.

link|flag
vote up 8 vote down

Prototypal inheritance (popularized by Douglas Crockford) completely revolutionizes the way you think about loads of things in Javascript.

Object.beget = function(Function){
    return function(Object){
        Function.prototype = Object;
        return new Function;
    }
}(function(){});

It's a killer! Pity how almost no one uses it.

It allows you to "beget" new instances of any object, extend them, while maintaining a (live) prototypical inheritance link to their other properties. Example:

var A = {
  foo : 'greetings'
};  
var B = Object.beget(A);

alert(B.foo);     // 'greetings'

// changes and additionns to A are reflected in B
A.foo = 'hello';
alert(B.foo);     // 'hello'

A.bar = 'world';
alert(B.bar);     // 'world'


// ...but not the other way around
B.foo = 'wazzap';
alert(A.foo);     // 'hello'

B.bar = 'universe';
alert(A.bar);     // 'world'
link|flag
vote up 4 vote down

Function statements and function expressions are handled differently.

function blarg(a) {return a;} // statement
bleep = function(b) {return b;} //expression

All function statements are parsed before code is run - a function at the bottom of a JavaScript file will be available in the first statement. On the other hand, it won't be able to take advantage of certain dynamic context, such as surrounding with statements - the with hasn't been executed when the function is parsed.

Function expressions execute inline, right where they are encountered. They aren't available before that time, but they can take advantage of dynamic context.

link|flag
vote up 3 vote down

jQuery and JavaScript:

Variable-names can contain a number of odd characters. I use the $ character to identify variables containing jQuery objects:

var $links = $("a");

$links.hide();

jQuery's pattern of chaining objects is quite nice, but applying this pattern can get a bit confusing. Fortunately JavaScript allows you to break lines, like so:

$("a")
.hide()
.fadeIn()
.fadeOut()
.hide();

General JavaScript:

I find it useful to emulate scope by using self-executing functions:

function test()
{
    // scope of test()

    (function()
    {
        // scope inside the scope of test()
    }());

    // scope of test()
}
link|flag
show 1 more comment
vote up 0 vote down

To convert a floating point number to an integer, you can use one of the following cryptic hacks (please don't):

  1. 3.14 >> 0 (via http://stackoverflow.com/questions/173070/29999999999999999-5)
  2. 3.14 | 0 (via http://stackoverflow.com/questions/131406/what-is-the-best-method-to-convert-to-an-integer-in-javascript)
  3. 3.14 & -1
  4. 3.14 ^ 0

Basically, applying any binary operation on the float that won't change the final value (i.e. identity function) ends up converting the float to an integer.

link|flag
show 1 more comment
vote up 0 vote down

function l(f,n){n&&l(f,n-1,f(n));}

l( function( loop ){ alert( loop ); }, 5 );

alerts 5, 4, 3, 2, 1

link|flag
3  
It makes sense but...I would never employ you. – Improfane Jul 13 at 0:36
vote up 4 vote down

If you blindly eval() a JSON string to deserialize it, you may run into problems:

  1. It's not secure. The string may contain malicious function calls!
  2. If you don't enclose the JSON string in parentheses, property names can be mistaken as labels, resulting in unexpected behaviour or a syntax error:

    eval("{ \"foo\": 42 }"); // syntax error: invalid label
    eval("({ \"foo\": 42 })"); // OK
    
link|flag
vote up 30 vote down

If you're Googling for a decent JavaScript reference on a given topic, include the "mdc" keyword in your query and your first results will be from the Mozilla Developer Center. I don't carry any offline references or books with me. I always use the "mdc" keyword trick to directly get to what I'm looking for. For example:

Google: javascript array sort mdc
(in most cases you may omit "javascript")

link|flag
1  
Fixed Google search link. – Ates Goral Sep 22 at 19:06
2  
Wow, great resource. Instantly better than crappy w3schools... – DisgruntledGoat Sep 22 at 23:31
show 2 more comments
vote up 21 vote down

To properly remove a property from an object, you should delete the property instead of just setting it to undefined:

var obj = { prop1: 42, prop2: 43 };

obj.prop2 = undefined;

for (var key in obj) {
    ...

The property prop2 will still be part of the iteration. If you want to completely get rid of prop2, you should instead do:

delete obj.prop2;

The property prop2 will no longer will make an appearance when you're iterating through the properties.

link|flag
vote up 2 vote down

Generators and Iterators (works only in Firefox 2+ and Safari).

function fib() {
  var i = 0, j = 1;
  while (true) {
	yield i;
	var t = i;
	i = j;
	j += t;
  }
}

var g = fib();
for (var i = 0; i < 10; i++) {
  document.write(g.next() + "<br>\n");
}

The function containing the yield keyword is a generator. When you call it, its formal parameters are bound to actual arguments, but its body isn't actually evaluated. Instead, a generator-iterator is returned. Each call to the generator-iterator's next() method performs another pass through the iterative algorithm. Each step's value is the value specified by the yield keyword. Think of yield as the generator-iterator version of return, indicating the boundary between each iteration of the algorithm. Each time you call next(), the generator code resumes from the statement following the yield.

In normal usage, iterator objects are "invisible"; you won't need to operate on them explicitly, but will instead use JavaScript's for...in and for each...in statements to loop naturally over the keys and/or values of objects.

var objectWithIterator = getObjectSomehow();

for (var i in objectWithIterator)
{
  document.write(objectWithIterator[i] + "<br>\n");
}
link|flag
vote up 3 vote down

let.

Counterpart to var's lack of block-scoping is let, introduced in JavaScript 1.7.

  • The let statement provides a way to associate values with variables within the scope of a block, without affecting the values of like-named variables outside the block.
  • The let expression lets you establish variables scoped only to a single expression.
  • The let definition defines variables whose scope is constrained to the block in which they're defined. This syntax is very much like the syntax used for var.
  • You can also use let to establish variables that exist only within the context of a for loop.
  function varTest() {
		var x = 31;
	if (true) {
	  var x = 71;  // same variable!
	  alert(x);  // 71
	}
	alert(x);  // 71
  }

  function letTest() {
	let x = 31;
	if (true) {
	  let x = 71;  // different variable
	  alert(x);  // 71
	}
	alert(x);  // 31
  }

As of 2008, JavaScript 1.7 is supported in FireFox 2.0+ and Safari 3.x.

link|flag
vote up 5 vote down

Prevent annoying errors while testing in Internet Explorer when using console.log() for Firebug:

function log(message) {
    (console || { log: function(s) { alert(s); }).log(message);
}
link|flag
vote up 3 vote down

The == operator has a very special property, that creates this disturbing equality (Yes, I know in other dynamic languages like Perl this behavior would be expected but JavaScript ususally does not try to be smart in comparisons):

>>> 1 == true
true
>>> 0 == false
true
>>> 2 == true
false
link|flag
vote up 0 vote down

Use jQuery for efficient JavaScript development. It can do magic with 1 line of code:

$("div.someDiv").click(function() { ($(this).hide("slow"); } );
link|flag
vote up 25 vote down

I'd have to say self-executing functions.

(function() { alert("hi there");})();
link|flag
5  
It's also good for block scoping. – Jim Hunziker May 23 at 19:41
show 5 more comments
vote up 5 vote down

Here's a couple of shortcuts:

var a = []; // equivalent to new Array()
var o = {}; // equivalent to new Object()
link|flag
vote up 12 vote down

There are several answers in this thread showing how to extend the Array object via its prototype. This is a BAD IDEA, because it breaks the for (i in a) statement.

So is it okay if you don't happen to use for (i in a) anywhere in your code? Well, only if your own code is the only code that you are running, which is not too likely inside a browser. I'm afraid that if folks start extending their Array objects like this, Stack Overflow will start overflowing with a bunch of mysterious JavaScript bugs.

See helpful details here.

link|flag
2  
You shouldn't iterate over an array with for..in at all! Use the standard for() loop or the new forEach() method for arrays, and for..in strictly for iterating over object properties. – Zilk Oct 28 '08 at 21:45
2  
Try to convince existing code of this advice ;) – Chris Noe Oct 28 '08 at 22:31
2  
for( x in y) has never worked properly for arrays for me. I learned very quickly to use the long form of a for loop. I wouldn't let any code that uses for(in) on an array anywhere near any of my work. There's plenty of actual decent well written code I could use instead. – Breton Jan 29 at 5:28
1  
@statictype.org - yeah, it's not - that's the point. Just use an index var for iteration instead. – harto Jul 21 at 23:29
show 3 more comments
vote up 39 vote down

Also mentioned in Crockford's "Javascript: The Good Parts":

parseInt() is dangerous. If you pass it a string without informing it of the proper base it may return unexpected numbers. For example parseInt('010') returns 8, not 10. Passing a base to parseInt makes it work correctly:

parseInt('010') // returns 8! (in FF3)
parseInt('010', 10); // returns 10 because we've informed it which base to work with.
link|flag
4  
When doing code reviews, always look for this one. Leaving off the ", 10" is a common mistake that goes unnoticed in most testing. – Doug D Jun 25 at 14:31
show 1 more comment
vote up 33 vote down

Here are some interesting things:

  • Comparing NaN with anything (even NaN) is always false.
  • Array.sort can take a comparator function and is usually called by a quicksort-like driver (depends on implementation).
  • Regular expression "constants" can maintain state (like the last thing they matched)
  • Some versions of javascript allow you to access $0, $1, $2 members on a regex.
  • null is unlike anything else. It is neither an object, a boolean, a number, a string, nor undefined. It's a bit like an "alternate" undefined. (note: typeof null == "object")
  • In the outermost context, 'this' yields the otherwise unnameable [Global] object.
  • Declaring a variable with 'var', instead of just relying on automatic declaration of the variable gives the runtime a real chance of optimizing access to that variable
  • the 'with' construct will destroy such optimzations
  • Variable names can contain Unicode.
  • JavaScript regular expressions are not actually regular. They are based on Perl's regexs, and it is possible to construct expressions with lookaheads that take a very, very long time to evaluate.
  • Blocks can be labeled and used as the targets of break. Loops can be labeled and used as the target of continue.
  • Arrays are not sparse. Setting the 1000th element of an otherwise empty array should fill it with undefined.
  • if(new Boolean(false)){...} will execute the true block

[updated a little in response to good comments; please see comments]

link|flag
2  
null is actually an (special) object. typeof null returns "object". – Ates Goral Oct 1 '08 at 4:35
1  
Array.sort is not implemented using a quicksort like driver, because it is necessary for the sort method to be able to handle absurd stuff like Math.random being used as a sort function, or comparison functions they modify what they are comparing. JavaScriptCore (eg. WebKit) uses AVL trees :-/ – olliej Feb 18 at 3:25
show 5 more comments
vote up 0 vote down

You can redefine large parts of the runtime environment on the fly, such as modifying the Array constructor or defining undefined. Not that you should, but it can be a powerful feature.

A somewhat less dangerous form of this is the addition of helper methods to existing objects. You can make IE6 "natively" support indexOf on arrays, for example.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.