vote up 202 vote down star
321

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

1 2 3 4 next
vote up 110 vote down

Functions are first class citizens in JavaScript:

var passFunAndApply = function (fn,x,y,z) { return fn(x,y,z); };

var sum = function(x,y,z) {
  return x+y+z;
};

alert( passFunAndApply(sum,3,4,5) ); // 12

Functional programming techniques can be used to write elegant javascript.

Particularly, functions can be passed as parameters, e.g. Array.filter() accepts a callback:

[1, 2, -1].filter(function(element, index, array) { return element > 0 });
// -> [1,2]

You can also declare a "private" function that only exists within the scope of a specific function:

function PrintName() {
    var privateFunction = function() { return "Steve"; };
    return privateFunction();
}
link|flag
1  
There are three ways to make functions in javascript: function sum(x, y, z){ return (x+y+z); } and var sum = new Function("x", "y", "z", "return (x+y+z);"); are the other ways. – Marius Sep 14 '08 at 19:35
2  
The concept of functions-as-data definitely wins big points in my book. – Jason Bunting Sep 14 '08 at 21:52
show 1 more comment
vote up 71 vote down

Private Methods

An object can have private methods.

function Person(firstName, lastName) {
    this.firstName = firstName;
    this.lastName = lastName;

    // A private method only visible from within this constructor
    function calcFullName() {
       return firstName + " " + lastName;    
    }

    // A public method available to everyone
    this.sayHello = function () {
        alert(calcFullName());
    }
}

//Usage:
var person1 = new Person("Bob", "Loblaw");
person1.sayHello();

// This fails since the method is not visible from this scope
alert(person1.calcFullName());
link|flag
7  
@Zach, exactly! It's easy, after spending years working with class-based OO languages, to forget that they are merely one implementation of OO concepts. Of course, the various libraries that attempt to cram quasi-class-based OO into JS don't help either... – Shog9 Sep 20 '08 at 22:23
show 12 more comments
vote up 36 vote down

with.

It's rarely used, and frankly, rarely useful... But, in limited circumstances, it does have its uses.

For instance: object literals are quite handy for quickly setting up properties on a new object. But what if you need to change half of the properties on an existing object?

var user = 
{
   fname: 'Rocket', 
   mname: 'Aloysus',
   lname: 'Squirrel', 
   city: 'Fresno', 
   state: 'California'
};

// ...

with (user)
{
   mname = 'J';
   city = 'Frostbite Falls';
   state = 'Minnesota';
}

Alan Storm points out that this can be somewhat dangerous: if the object used as context doesn't have one of the properties being assigned to, it will be resolved in the outer scope, possibly creating or overwriting a global variable. This is especially dangerous if you're used to writing code to work with objects where properties with default or empty values are left undefined:

var user = 
{
   fname: "John",
// mname definition skipped - no middle name
   lname: "Doe"
};

with (user)
{
   mname = "Q"; // creates / modifies global variable "mname"
}

Therefore, it is probably a good idea to avoid the use of the with statement for such assignment.

See also: Are there legitimate uses for JavaScript’s “with” statement?

link|flag
12  
Conventional wisdom the with statment is to be avoided. If the user object didn't have one of the properties you mentioned, the variable outside the with block's pseudo-scope would be modified. That way lies bugs. More info at yuiblog.com/blog/2006/… – Alan Storm Sep 14 '08 at 7:54
2  
Douglas Crockford recently said "with" is one of the worst parts of JavaScript in a .NET Rocks! podcast. – Chris Mar 14 at 4:09
show 7 more comments
vote up 66 vote down

Here's one that can save your bacon from time to time:

obj = {a:"test"};
var a = obj.a;
var b = obj["a"];
a == b;

Some people don't know this and end up with code like this:

var str = "a";
var a = eval("obj." + str);

Not only is the above easier to read, it's also a lot safer and less likely to invite XSS attacks. For example:

var str = getStrFromGetVars(); //evil user sets getVar to "a; alert("lolz")"
var a = eval("obj." + str);   //alert boxes!

Please keep this in mind when writing your webapps and widgets.

link|flag
show 2 more comments
vote up 42 vote down

"Extension methods in JavaScript" via the prototype property.

Array.prototype.contains = function(value) {  
    for (var i = 0; i < this.length; i++) {  
        if (this[i] == value) return true;  
    }  
    return false;  
}

This will add a contains method to all Array objects. You can call this method using this syntax

var stringArray = ["foo", "bar", "foobar"];
stringArray.contains("foobar");
link|flag
6  
This is generally considered a bad idea, because other code (not yours) may make assumptions about the Array object. – Chris Noe Sep 22 '08 at 19:45
7  
It's also generally considered a bad idea to make assumptions about the Array object. :( – eyelidlessness Oct 7 '08 at 23:47
show 2 more comments
vote up 31 vote down

Assigning default values to variables

You can use the logical or operator || in an assignment expression to provide a default value:

var a = b || c;

The a variable will get the value of c only if b is falsy (if is null, false, undefined, 0, empty string, or NaN), otherwise a will get the value of b.

This is often useful in functions, when you want to give a default value to an argument in case isn't supplied:

function example (arg1) {
  arg1 = arg1 || 'default value';
}

The debugger statement

This is not a JavaScript language feature by itself, this statement doesn't even exists on the ECMAScript Language Specification, but all the JavaScript implementations include it, this statement allows you to put breakpoints programmatically in your code, you can call it just by:

// ...
debugger;
// ...

And if the debugger is attached, it will break immediately, right on that line.

link|flag
15  
Not if it's null, if it's considered false. a = 0 || 42; will give you 42. This is comparable with Python's or, not C#'s ?? operator. If you want the C# behavior, do a = (b === null) ? c : b; – Armin Ronacher Sep 21 '08 at 22:18
vote up 1 vote down

It's surprising how many people don't realize that it's object oriented as well.

link|flag
show 3 more comments
vote up 52 vote down

JavaScript does not have block scope (but it has closure so let's call it even?).

var x = 1;
{
   var x = 2;
}
alert(x); // outputs 2
link|flag
3  
You can always do "var tmp = function() { /* block scope */ }();". The syntax is ugly, but it works. – Joeri Sebrechts Sep 30 '08 at 11:03
1  
Or you can use "let" if it's Firefox only: stackoverflow.com/questions/61088/… – eed3si9n Oct 1 '08 at 0:42
5  
or just: (function() { var x = 2; })(); alert(typeof x); //undefined – Pim Jager Jan 27 at 23:17
show 1 more comment
vote up 17 vote down

How about closures in JavaScript (equivalent of anonymous methods in C# v2.0+). You can create a function that creates a function or "expression".

Example of closures:

//Takes a function that filters numbers and calls the function on 
//it to build up a list of numbers that satisfy the function.
function filter(filterFunction, numbers)
{
  var filteredNumbers = [];

  for (var index = 0; index < numbers.length; index++)
  {
    if (filterFunction(numbers[index]) == true)
    {
      filteredNumbers.push(numbers[index]);
    }
  }
  return filteredNumbers;
}

//Creates a function (closure) that will remember the value "lowerBound" 
//that gets passed in and keep a copy of it.
function buildGreaterThanFunction(lowerBound)
{
  return function (numberToCheck) {
    return (numberToCheck > lowerBound) ? true : false;
  };
}

var numbers = [1, 15, 20, 4, 11, 9, 77, 102, 6];

var greaterThan7 = buildGreaterThanFunction(7);
var greaterThan15 = buildGreaterThanFunction(15);

numbers = filter(greaterThan7, numbers);
alert('Greater Than 7: ' + numbers);

numbers = filter(greaterThan15, numbers);
alert('Greater Than 15: ' + numbers);
link|flag
show 3 more comments
vote up 17 vote down

You can also extend (inherit) classes and override properties/methods using the prototype chain spoon16 alluded to.

In the following example we create a class Pet and define some properties. We also override the .toString() method inherited from Object.

After this we create a Dog class which extends Pet and overrides the .toString() method again changing it's behavior (polymorphism). In addition we add some other properties to the child class.

After this we check the inheritance chain to show off that Dog is still of type Dog, of type Pet, and of type Object.

// Defines a Pet class constructor 
function Pet(name) 
{
    this.getName = function() { return name; };
    this.setName = function(newName) { name = newName; };
}

// Adds the Pet.toString() function for all Pet objects
Pet.prototype.toString = function() 
{
    return 'This pets name is: ' + this.getName();
};
// end of class Pet

// Define Dog class constructor (Dog : Pet) 
function Dog(name, breed) 
{
    // think Dog : base(name) 
    Pet.call(this, name);
    this.getBreed = function() { return breed; };
}

// this makes Dog.prototype inherit from Pet.prototype
Dog.prototype = new Pet();

// Currently Pet.prototype.constructor
// points to Pet. We want our Dog instances'
// constructor to point to Dog.
Dog.prototype.constructor = Dog;

// Now we override Pet.prototype.toString
Dog.prototype.toString = function() 
{
    return 'This dogs name is: ' + this.getName() + 
        ', and its breed is: ' + this.getBreed();
};
// end of class Dog

var parrotty = new Pet('Parrotty the Parrot');
var dog = new Dog('Buddy', 'Great Dane');
// test the new toString()
alert(parrotty);
alert(dog);

// Testing instanceof (similar to the `is` operator)
alert('Is dog instance of Dog? ' + (dog instanceof Dog)); //true
alert('Is dog instance of Pet? ' + (dog instanceof Pet)); //true
alert('Is dob instance of Object? ' + (dog instanceof Object)); //true

Both answers to this question were codes modified from a great MSDN article by Ray Djajadinata.

link|flag
vote up 37 vote down

Functions are objects and therefore can have properties.

fn = function(x) {
   // ...
}

fn.foo = 1;

fn.next = function(y) {
  //
}
link|flag
5  
This is a very useful tip. For example, you can set default values as a property of the function. For example: myfunc.delay=100; Then users can change the default value and all function calls will use the new default value. For example: myfunc.delay = 200; myfunc(); – BarelyFitz Jun 1 at 0:23
vote up 124 vote down

I could quote most of Douglas Crockford's excellent book JavaScript: The Good Parts.

alt text

But I'll take just one for you, always use === and !== instead of == and !=

alert('' == '0'); //false
alert(0 == ''); // true
alert(0 =='0'); // true

== is not transitive. If you use === it would give false for all of these statements as expected.

link|flag
2  
I think I'll be picking that up. Thanks. – Allain Lalonde Sep 14 '08 at 18:58
2  
Most people consider this one of the worst parts of the language when they first see it (3 equals!?). I think knowing about it is important though because it forces you to commit to memory that JavaScript is dynamically typed. – Allain Lalonde Sep 14 '08 at 19:01
4  
I second Jason's warning. The book in itself is very interesting, and it does give a lot of good advice, but DC is far too convinced that his way of doing things is the only correct way, everything else is "defective". If you'd like some examples, look at his responses on the JSLint Yahoo Group. – Zilk Oct 28 '08 at 21:21
5  
Nontransitive: '' == 0, and 0 == '0', but '' != '0'. If it was transitive, '' would equal '0'. 0 == '' because type conversion is automatic, and some JS architect thought that '' should convert to 0. – Paul Marshall Mar 20 at 15:30
9  
Use === instead of == is good advice if you are confused by dynamic typing and just want it to be "really" equals. Those of us who understand dynamic typing may continue to use == for situations where we know we want to cast, as in 0 == '' or 0 == '0'. – thomasrutter Apr 1 at 5:15
show 9 more comments
vote up 5 vote down

Javascript has static variables inside functions:

function someFunction(){
  var Static = arguments.callee;
  Static.someStaticVariable = (Static.someStaticVariable || 0) + 1;
  alert(Static.someStaticVariable);
}
someFunction() //Alerts 1
someFunction() //Alerts 2
someFunction() //Alerts 3

It also has static variables inside Objects:

function Obj(){
  this.Static = arguments.callee;
}
a = new Obj();
a.Static.name = "a";
b = new Obj();
alert(b.Static.name); //Alerts b
link|flag
2  
I think you're misrepresenting the ability of functions to have properties in general. What you say is technically true, but as a side effect to the functions being first order objects in the language. – levik Sep 16 '08 at 15:08
1  
Agreed, this is a little misleading. "arguments.callee" is simply a reference to the function that was called. In your second example, a.Static === b.Static === Obj – Josh Sep 22 '08 at 11:36
show 1 more comment
vote up 4 vote down

"undefined" is undefined. So you can do this:

if (var.field === undefined) ...
link|flag
1  
"undefined" is not a reserved word, so this could potentially fail if you have a variable with that name. – levik Sep 16 '08 at 15:11
9  
if you have a variable with that name, you've failed already – jsight Oct 1 '08 at 17:01
show 1 more comment
vote up 0 vote down

As Marius already pointed, you can have public static variables in functions.

I usually use them to create functions that are executed only once, or to cache some complex calculation results.

Here's the example of my old "singleton" approach:

var singleton = function(){ 

  if (typeof arguments.callee.__instance__ == 'undefined') { 

    arguments.callee.__instance__ = new function(){

      //this creates a random private variable.
      //this could be a complicated calculation or DOM traversing that takes long
      //or anything that needs to be "cached"
      var rnd = Math.random();

      //just a "public" function showing the private variable value
      this.smth = function(){ alert('it is an object with a rand num=' + rnd); };

   };

  }

  return arguments.callee.__instance__;

};


var a = new singleton;
var b = new singleton;

a.smth(); 
b.smth();

As you may see, in both cases the constructor is run only once.

For example, I used this approach back in 2004 when I had to create a modal dialog box with a gray background that covered the whole page (something like Lightbox). Internet Explorer 5.5 and 6 have the highest stacking context for <select> or <iframe> elements due to their "windowed" nature; so if the page contained select elements, the only way to cover them was to create an iframe and position it "on top" of the page. So the whole script was quite complex and a little bit slow (it used filter: expressions to set opacity for the covering iframe). The "shim" script had only one ".show()" method, which created the shim only once and cached it in the static variable :)

link|flag
vote up 7 vote down

The way JavaScript works with Date() just excites me!

function isLeapYear(year) {
    return (new Date(year, 1, 29, 0, 0).getMonth() != 2);
}

This is really "hidden feature".

Edit: Removed "?" condition as suggested in comments for politcorrecteness. Was: ... new Date(year, 1, 29, 0, 0).getMonth() != 2 ? true : false ... Please look at comments for details.

link|flag
show 5 more comments
vote up 3 vote down

All functions are actually instances of the built-in Function type, which has a constructor that takes a string containing the function definition, so you can actually define functions at run-time by e.g., concatenating strings:

//e.g., createAddFunction("a","b") returns function(a,b) { return a+b; }
function createAddFunction(paramName1, paramName2)
 { return new Function( paramName1, paramName2
                       ,"return "+ paramName1 +" + "+ paramName2 +";");
 }

Also, for user-defined functions, Function.toString() returns the function definition as a literal string.

link|flag
2  
This usually isn't necessary, though. In your example, you could just say: return function(paramName1, paramName2) { return paramName1 + paramName2; } – JW Sep 15 '08 at 17:43
show 1 more comment
vote up 193 vote down

You don't need to define any parameters for a function. You can just use the function's arguments array.

function sum() 
{ var retval = 0;
  for (int i=0; i < arguments.length; ++i) 
   { retval += arguments[i];
   }
  return retval;
}

sum(1,2,3) //returns 6
link|flag
41  
Worth noting though that although arguments acts like an array, it's not an actual javascript Array -- it's just an object. So you can't do join(), pop(), push(), slice() and so forth. (You can convert it to a real array if you want: "var argArray = Array.prototype.slice.call(arguments);" ) – JacobM Jan 26 at 21:37
16  
It's also worth noting that accessing the Arguments object is relatively expensive -- the best examples are in Safari, Firefox, and Chrome nightlies where merely referencing the arguments object makes calling a function much slower -- eg. if(false) arguments; will hurt perf. – olliej Feb 18 at 3:20
8  
In the same vein, arguments has a "callee" property which is the current function itself. This allows to do recursion with anonymous functions, cool! – Vincent Robert Apr 2 at 20:01
show 4 more comments
vote up 14 vote down

All objects in Javascript are implemented as hashtables, so their properties can be accessed through the indexer and vice-versa. Also, you can enumerate all the properties using the for/in operator:

var x = {a: 0};
x["a"]; //returns 0

x["b"] = 1;
x.b; //returns 1

for (p in x) document.write(p+";"); //writes "a;b;"
link|flag
2  
Just do not forget to check the property names with "object.hasOwnProperty(propertyName)" before using them from the for-in loop or else you'll experience some unwanted stuff ;) – BYK Jun 21 at 21:59
show 3 more comments
vote up 78 vote down

You can use the in operator to check if a value is in a list:

var x = 1;
var y = 3;
var list = {0:0, 1:0, 2:0};
x in list; //true
y in list; //false
1 in list; //true
y in {3:0, 4:0, 5:0}; //true

(Edit): had to change list literals to object literals. See Armin's comment. If you find the object literals too ugly you can combine it with the paramaterless function tip:

function list()
 { var x = {};
   for(var i=0; i < arguments.length; ++i) x[arguments[i]] = 0;
   return x
 }

 5 in list(1,2,3,4,5) //true
link|flag
12  
Not so clever, that checks if a key is present, not if a value is. x in list; only works because x[1] != null, not because the value 1 is there. – Armin Ronacher Sep 21 '08 at 22:16
1  
I haven't used the technique ina while so I forgot that I actually used object literals before. Thanks for the correction. – Mark Cidade Sep 22 '08 at 17:03
5  
Also, be careful: the in operator also tests the prototype chain! If someone has put a property called '5' on the Object.prototype, the second example would return true even if you called '5 in list(1, 2, 3, 4)'... You'd better use the hasOwnProperty method: list(1, 2, 3, 4).hasOwnProperty(5) will return false, even if Object.prototype has a property '5'. – Martijn Jun 22 at 8:24
show 1 more comment
vote up 8 vote down

JavaScript uses a simple object literal:

var x = { intValue: 5, strValue: "foo" };

This constructs a full-fledged object.

JavaScript uses prototype-based object orientation and provides the ability to extend types at runtime:

String.prototype.doubleLength = function() {
    return this.length * 2;
}

alert("foo".doubleLength());

An object delegates all access to attributes that it doesn't contain itself to its "prototype", another object. This can be used to implement inheritance, but is actually more powerful (even if more cumbersome):

/* "Constructor" */
function foo() {
    this.intValue = 5;
}

/* Create the prototype that includes everything
 * common to all objects created be the foo function.
 */
foo.prototype = {
    method: function() {
        alert(this.intValue);
    }
}

var f = new foo();
f.method();
link|flag
show 1 more comment
vote up 58 vote down

Maybe a little obvious to some...

Install Firebug and use console.log("hello"). So much better than using random alert();'s which I remember doing a lot a few years ago.

link|flag
2  
Just don't forget to remove the console statements before releasing your code to others who may not have Firebug installed. – Chris Noe Sep 22 '08 at 19:49
33  
function log(msg) { if(console) console.log(msg) else alert(msg) } – Josh Sep 26 '08 at 21:33
1  
Even better, precede log statements with ';;;' and then minify takes care of it for you. (At least, the Perl module I use has that feature, and claims it's commonplace.) – Kev Nov 10 '08 at 13:46
3  
Josh: That won't work as console is not defined. You could check typeof console !== "undefined" or window.console. – Elijah Grey Aug 13 at 3:03
3  
Always include: if (typeof('console') == 'undefined') { console = { log: function() { } }; } then you can continue to use console.log, and it just does nothing. – gregmac Sep 2 at 4:37
show 4 more comments
vote up -3 vote down

JavaScript does have block scope! Use with and JSON:

function say(x) {document.write("x = '" + x + "'<br/>");}
var x = "outer scope";

with ({x: "inner scope"}) // Local instance of x masks global x
{
    x += " modified";
    say (x);
}

say(x);

It produces this output:

x = 'inner scope modified'
x = 'outer scope'

:)

link|flag
show 2 more comments
vote up 7 vote down

One of my favorites is constructor type checking:

function getObjectType( obj ) {  
    return obj.constructor.name;  
}  

window.onload = function() {  
    alert( getObjectType( "Hello World!" ) );  
    function Cat() {  
        // some code here...  
    }  
    alert( getObjectType( new Cat() ) );  
}

So instead of the tired old [Object object] you often get with the typeof keyword, you can actually get real object types based upon the constructor.

Another one is using variable arguments as a way to "overload" functions. All you are doing is using an expression to detect the number of arguments and returning overloaded output:

function myFunction( message, iteration ) {  
    if ( arguments.length == 2 ) {  
        for ( i = 0; i < iteration; i++ ) {  
            alert( message );  
        }  
    } else {  
        alert( message );  
    }  
}  

window.onload = function() {  
    myFunction( "Hello World!", 3 );  
}

Finally, I would say assignment operator shorthand. I learned this from the source of the jQuery framework... the old way:

var a, b, c, d;
b = a;
c = b;
d = c;

The new (shorthand) way:

var a, b, c, d;
d = c = b = a;

Good fun :)

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

This one is super hidden, and only occasionally useful ;-)

You can use the prototype chain to create an object that delegates to another object without changing the original object.

var o1 = { foo: 1, bar: 'abc' };
function f() {}
f.prototype = o1;
o2 = new f();
assert( o2.foo === 1 );
assert( o2.bar === 'abc' );
o2.foo = 2;
o2.baz = true;
assert( o2.foo === 2 );
// o1 is unchanged by assignment to o2
assert( o1.foo === 1 );
assert( o2.baz );

This only covers 'simple' values on o1. If you modify an array or another object, then the prototype no longer 'protects' the original object. Beware anytime you have an {} or [] in a Class definition/prototype.

link|flag
vote up 13 vote down

Timestamps in JavaScript:

//Usual Way
var d=new Date();
timestamp=d.getTime();

//Shorter Way
timestamp=(new Date()).getTime();

//Shortest Way
timestamp=+new Date();
link|flag
10  
The shortest way is clever but hard to understand, as one might think you wanted to write += but mistakenly wrote =+ – Rene Saarsoo Mar 9 at 10:12
show 3 more comments
vote up 4 vote down

Function.toSource():

function x() {
    alert("Hello World");
}
eval ("x = " + (x + "").replace(
    'Hello World',
    'STACK OVERFLOW BWAHAHA"); x("'));
x();
link|flag
show 2 more comments
vote up 14 vote down

Private variables with a Public Interface

It uses a neat little trick with a self-calling function definition. Everything inside the object which is returned is available in the public interface, while everything else is private.

var test = function () {
    //private members
    var x = 1;
    var y = function () {
        return x * 2;
    };
    //public interface
    return {
        setx : function (newx) {
            x = newx;
        },
        gety : function () {
            return y();
        }
    }
}();

assert(undefined == test.x);
assert(undefined == test.y);
assert(2 == test.gety());
test.setx(5);
assert(10 == test.gety());
link|flag
show 1 more comment
vote up 21 vote down

Methods (or functions) can be called on object that are not of the type they were designed to work with. This is great to call native (fast) methods on custom objects.

var listNodes = document.getElementsByTagName('a');
listNodes.sort(function(a, b){ ... });

This code crashes because listNodes is not an Array

Array.prototype.sort.apply(listNodes, [function(a, b){ ... }]);

This code works because listNodes defines enough array-like properties (length, [] operator) to be used by sort().

link|flag
vote up 12 vote down

Numbers are also objects. So you can do cool stuff like:

// convert to base 2
(5).toString(2) // returns "101"

// provide built in iteration
Number.prototype.times = function(funct){
  if(typeof funct === 'function') {
    for(var i = 0;i < Math.floor(this);i++) {
      funct(i);
    }
  }
  return this;
}


(5).times(function(i){
  string += i+" ";
});
// string now equals "0 1 2 3 4 "

var x = 1000;

x.times(function(i){
  document.body.innerHTML += '<p>paragraph #'+i+'</p>';
});
// adds 1000 parapraphs to the document
link|flag
1 2 3 4 next

Your Answer

Get an OpenID
or

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