Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.


i have read this javascript article, where an exmaple is shown , Please explain why below codes return different output due to changes the place of curly braces {

curly brace { on new line

function test()
{
  return
  { /* <----curly brace in new line*/
    javascript : "fantastic"
  };
}

var r = test();
try {
  alert(r.javascript); // does this work...?
} catch (e) {
  alert('no - it broke: ' + typeof r);
}

returns no - it broke: undefined

whereas

curly brace { on same line

function test()
{
  return { /* <----inline curly brace*/
    javascript : "fantastic"
  };
}

var r = test();
try {
  alert(r.javascript); // does this work...?
} catch (e) {
  alert('no - it broke: ' + typeof r);
}

returns fantastic

here is live exmpale beware of curly braces

share|improve this question

6 Answers

up vote 25 down vote accepted

That's one of the pitfalls of javascript: automatic semicolon insertion. Lines that do not end with a semicolon, but could be the end of a statement are automatically terminated, so your first example looks effectively like this:

function test()
{
  return; // <- notice the inserted semicolon
  { 
    javascript : "fantastic"
  };
}

See also http://javascript.crockford.com/code.html

In your second example you return an object (built by the curly braces) with the property javascript and its value of fantastic, effectively the same as this:

function test() {
    var myObject = new Object();
    myObject.javascript = "fantastic";
    return myObject;
}
share|improve this answer
+1 javascript automatic semicolon insertion – Rakesh Juyal Sep 4 '10 at 9:06
Exactly right. Crockford has a googletalk video on youtube where he illustrates this very clearly. – Rich Sep 4 '10 at 9:17
2  
Fun Fact: On some engines you can comment out the auto-inserted semicolons – Chris T Sep 6 '10 at 3:55

Javascript doesn't require semicolons at the end of statements, but the drawback is that it has to guess where the semicolons are. Most of the time this is not a problem, but sometimes it invents a semicolon where you didn't intend one.

An example from my blog post about this (Javascript – almost not line based):

If you format the code like this:

function getAnswer() {
   var answer = 42;
   return
      answer;
}

Then it is interpreted like this:

function getAnswer() {
  var answer = 42;
  return;
  answer;
}

The return statement takes it’s parameterless form, and the argument becomes a statement of it’s own.

The same happens to your code. The function is interpreted as:

function test()
{
  return;
  {
    javascript : "fantastic"
  };
}
share|improve this answer

It's because javascript most often puts ";" at the end of each line, so basicly when you have return { in same line, javascript engine see that there will be something more, and when its in new line it thinks you forgot to put ";", and puts it for you.

share|improve this answer
1  
I don't get why cichy's, Darin's and Ivo's answers were downvoted? – BoltClock Sep 4 '10 at 9:01

The curly braces here indicate the construction of a new object. Thus your code is equivalent to:

function test() {
  var a = { javascript : "fantastic" };
  return a;
}

which works whereas if you write:

function test() {
  var a = { javascript : "fantastic" };
  return; // ; is automatically inserted 
      a;
}

it no longer works.

share|improve this answer

The problem is indeed semicolon injection as described above. I just read a good blog posting on this subject. It explains this issue and a whole lot more about javascript. It also contains some good references. You can read it here

share|improve this answer
Yes, i also read that, ater reading i asks here to explain better by mastermind of js. – JustLearn Sep 4 '10 at 8:54

I personally prefer the Allman Style for readability (vs K&R style).

Instead of…

function test() {
  return {
    javascript : "fantastic"
  };
}

I like…

function test() 
{
  var obj =
  {
    javascript : "fantastic"
  };

  return obj;
}

But this is a work-around. I can live with it though.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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