vote up 28 vote down star
28

Here are some gems:

Literals:

var obj = {}; // Object literal, equivalent to var obj = new Object();
var arr = []; // Array literal, equivalent to var arr = new Array();
var regex = /something/; // Regular expression literal, equivalent to var regex = new RegExp('something');

Defaults:

arg = arg || 'default'; // if arg evaluates to false, use 'default'

Of course we know anonymous functions, but being able to treat them as literals and execute them on the spot (as a closure) is great:

(function() { ... })(); // Creates an anonymous function and executes it

Question: What other great syntactic sugar is available in javascript?

flag
I wasn't aware of that || default value syntax. Nice and compact, though not so intuitive. (Maybe I have seen it, but never understood it.) – Chris Noe Oct 8 '08 at 0:37
I had a much harder time grasping ternary syntax. It'll seem like second nature after you write it a few times. As far as places you may have seen it, I think both jquery.js and prototype.js use it. – eyelidlessness Oct 8 '08 at 2:06
How about explaining each of the examples? – pc1oad1etter Oct 22 '08 at 1:35
1  
Make this community wiki. – roosteronacid Oct 22 '08 at 9:11

21 Answers

vote up 17 vote down check

Getting the current datetime as milliseconds:

+new Date()

The unary + coerces the Date value to Number. The result is the same as either of these expressions:

Number(new Date())
new Date().getTime()

For example, to time the execution of a section of code:

var start = +new Date();
// some code
alert((+new Date() - start) + " ms elapsed");
link|flag
This is, in fact, the best javascript syntactic sugar. A winnar si yuo. – eyelidlessness Oct 22 '08 at 8:52
1  
You don't need the +, it works just fine without it. – OrbMan Jul 22 at 21:25
OrbMan, that probably depends on the context; if passing it as an argument, it may be coerced to an Object rather than to a Number or a String, in which case the + would have already coerced it to a Number. In fact, + appears to function as a shorthand for parseInt(value, 10). – eyelidlessness Aug 11 at 0:33
Correction: it does have some difference from parseInt(value, 10). For instance, +[3] and parseInt([3], 10) are both equal to the number 3, but +[3, 4] == NaN and parseInt([3, 4], 10) == 3. – eyelidlessness Aug 11 at 0:37
Er... all of those instances of parseInt(value, 10) ought to be parseFloat(value). And Chris Noe, sorry for the comment spam ;) – eyelidlessness Aug 11 at 0:40
vote up 16 vote down

In Mozilla (and reportedly IE7) you can create an XML constant using:

var xml = <elem></elem>;

You can substitute variables as well:

var elem = "html";
var text = "Some text";
var xml = <{elem}>{text}</{elem}>;
link|flag
Really? Are there other engines which support that? – eyelidlessness Oct 7 '08 at 23:42
This is part of the E4X extension: en.wikipedia.org/wiki/E4X – Chris Noe Oct 7 '08 at 23:52
1  
Just wondering: what can you do with that "xml" variable once you've created it? Just playing with it now in firebug, it looks as though it doesn't have any methods or properties and you can't add it to the DOM. – nickf Oct 8 '08 at 0:14
Helpful link: developer.mozilla.org/index.php?title=En/… – Chris Noe Oct 8 '08 at 0:23
1  
E4X literals are a security disaster due to cross-site-script-inclusion attacks, and really not noticeably better than just being able to say “var xml= new XML('<elem></elem>')” IMO. – bobince Mar 6 at 23:18
show 3 more comments
vote up 12 vote down

Use === to compare value and type:

var i = 0;
var s = "0";

if (i == s)  // true

if (i === s) // false
link|flag
It's actually referred to as strict equal -- basically it avoids all the type conversions that otherwise have to happen when doing == – olliej Oct 7 '08 at 23:54
other languages (PHP) also call it "identity" checking, ie: are these two values identical? – nickf Oct 8 '08 at 0:15
vote up 2 vote down

This isn't a javascript exclusive, but saves like three lines of code:

check ? value1 : value2
link|flag
Is there an equivalent to this when not assigning a value (eg. fnName ? fnName : defaultFn;)? – eyelidlessness Oct 7 '08 at 23:54
No, the ternary operator is strictly for expressions; no statements – Josh Hinman Oct 8 '08 at 0:11
you can use it to evaluate anonymous functions, like this: "var myFunc = (browserIsIE ? function() { ... } : function() { ... })" . personally, I wouldn't recommend it since it's pretty confusing, but at least it's possible. – nickf Oct 8 '08 at 0:17
"evaluate" probably isn't the best word in that previous comment. Umm.. assign? – nickf Oct 8 '08 at 0:23
@eyelidlessness: Yes: fnName ? fnName() : defaultFn(); // on a line on its own, works – Ates Goral Oct 8 '08 at 1:11
show 2 more comments
vote up 2 vote down

A little bit more on levik's example:

var foo = (condition) ? value1 : value2;
link|flag
1  
You don't need the parenthesis. Ternary operators are also common to many other languages. – Ates Goral Oct 8 '08 at 1:08
The parentheses help when there is syntactical ambiguity in the conditional statement (eg determining which component of the conditional statement the ? applies to). – eyelidlessness Sep 27 at 6:45
vote up 9 vote down

Being able to extend native JavaScript types via prototypal inheritance.

String.prototype.isNullOrEmpty = function(input) {
    return input === null || input.length === 0;
}
link|flag
1  
Just avoid doing this to Array: stackoverflow.com/questions/61088/… – Chris Noe Oct 8 '08 at 0:17
This is true, but only if you use the for(a in b) loop. Typically I use frameworks, as I'm sure everyone else does. As a consequence I'm typically using .each() – steve_c Oct 8 '08 at 0:35
It's a potential problem if any code in your container uses for(a in b). And when that container is a browser, you could be breaking other code in your browser, (eg, that framework). I have been dinged by the one. – Chris Noe Oct 8 '08 at 0:42
Yep. Good points, Chris. I still count prototypal inheritance as one of the best features of JavaScript :) – steve_c Oct 8 '08 at 0:52
for(var i in obj) { if(!obj.hasOwnProperty(i)) { continue; } ... } – eyelidlessness Oct 8 '08 at 2:12
show 1 more comment
vote up 9 vote down

Multi-line strings:

var str = "This is \
all one \
string.";

Since you cannot indent the subsequent lines without also adding the whitespace into the string, people generally prefer to concatenate with the plus operator. But this does provide a nice here document capability.

link|flag
vote up 13 vote down

Using anonymous functions and a closure to create a private variable and get/set methods:

var getter, setter;

(function()
{
   var _privateVar=123;
   getter = function() { return _privateVar; };
   setter = function(v) { _privateVar = v; };
})()
link|flag
took me a moment, but i got it. this IS neat. – matt lohkamp Oct 9 '08 at 9:48
I discovered a similar technique a while ago while looking through the swfobject source. Using closures to create private variables/methods is something I probably never would have thought of. It's kind of cool. – Herms Mar 31 at 13:42
vote up 9 vote down

Object membership test:

var props = { a: 1, b: 2 };

("a" in props) // true
("b" in props) // true
("c" in props) // false
link|flag
That is certainly more concise than props.a === undefined Thanks. – eyelidlessness Oct 8 '08 at 1:03
And it's true even if props = { a: undefined }. – ephemient Oct 8 '08 at 3:09
Oh right, that makes sense. – eyelidlessness Oct 8 '08 at 5:05
vote up 0 vote down

I love being able to eval() a json string and get back a fully populated data structure. I Hate having to write everything at least twice (once for IE, again for Mozilla).

link|flag
I think this one deserves a code example. – Chris Noe Oct 9 '08 at 1:35
vote up 3 vote down

Getters and setters:

function Foo(bar)
{
    this.bar = bar;
}

Foo.prototype =
{
    get bar()
    {
        return this._bar;
    },

    set bar(bar)
    {
        this._bar = bar.toUpperCase();
    }
};

Gives us:

>>> var myFoo = new Foo("bar");
>>> myFoo.bar
"BAR"
>>> myFoo.bar = "Baz";
>>> myFoo.bar
"BAZ"
link|flag
Can't wait til this is available universally. – eyelidlessness Oct 8 '08 at 19:45
Yes, it will be a bit nicer then the current approach I used. – Ash Oct 11 '08 at 6:18
@eyelidlessness it is in ECMAScript 5's Object.defineProperty which IE implements and other browsers can use defineGetter. – Elijah Grey Aug 15 at 15:46
IE8 only implements getters/setters for DOM objects, so it's useless when it comes to making your own object APIs neater :-/ – insin Aug 15 at 20:57
vote up 1 vote down

The Array#forEach on Javascript 1.6

myArray.forEach(function(element) { alert(element); });
link|flag
vote up 1 vote down

I forgot:

(function() { ... }).someMethod()(); // Functions as objects
link|flag
vote up 0 vote down

As an aside note (with the added benefit of potentially inciting a religious war):

Funny, but all the things mentioned here were already in LISP 30 years ago.

link|flag
Which browsers can you script with it? – Chris Noe Oct 22 '08 at 1:59
How is browser scripting related to syntactic sugar? – Jonathan Arkell Nov 1 '08 at 19:36
How many browser do you know that will run my LISP scripts? – Pim Jager May 19 at 15:55
Jonathan Arkell, the topic discusses syntactic sugar in Javascript, which is both primarily used as a browser scripting language and the most widely used browser scripting language. – eyelidlessness Sep 27 at 6:48
vote up 5 vote down

Repeating a string such as "-" a specific number of times by leveraging the join method on an empty array:

var s = new Array(iRepeat+1).join("-");

Results in "---" when iRepeat == 3.

link|flag
vote up 4 vote down
var tags = {
    name: "Jack",
    location: "USA"
};

"Name: {name}<br>From {location}".replace(/\{(.*?)\}/gim, function(all, match){
    return tags[match];
});

callback for string replace is just useful.

link|flag
vote up 0 vote down

int to string cast

var i = 12;
var s = i+"";
link|flag
vote up 1 vote down

Following obj || {default:true} syntax :

calling your function with this : hello(neededOne && neededTwo && needThree) if one parameter is undefined or false then it will call hello(false), sometimes usefull

link|flag
vote up 0 vote down

Assigining the frequently used keywords (or any methods) to the simple variables like ths

  var $$ = document.getElementById;

  $$('samText');
link|flag
vote up 2 vote down

Resize the Length of an Array

length property is a not read only. You can use it to increase or decrease the size of an array.

var myArray = [1,2,3];
myArray.length // 3 elements.
myArray.length = 2; //Deletes the last element.
myArray.length = 20 // Adds 18 elements to the array; the elements have the undefined value. A sparse array.
link|flag
vote up 0 vote down
element.innerHTML = "";  // Replaces body of HTML element with an empty string.

A shortcut to delete all child nodes of element.

link|flag
1  
That's not really Javascript, it's DOM, and it's currently non-standard at that. – eyelidlessness Sep 1 at 20:05

Your Answer

Get an OpenID
or

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