Block statement

 

The most basic statement is a block statement that is used to group statements. The block is delimited by a pair of curly brackets:

{
  statement_1;
  statement_2;
  .
  .
  .
  statement_n;
}

  

Example

Block statements are commonly used with control flow statements (e.g. ifforwhile).

while (x < 10) {
  x++;
}
 

  

Here, { x++; } is the block statement.

Important: JavaScript does not have block scope prior to ECMAScript 6. Variables introduced within a block are scoped to the containing function or script, and the effects of setting them persist beyond the block itself. In other words, block statements do not introduce a scope. Although "standalone" blocks are valid syntax, you do not want to use standalone blocks in JavaScript, because they don't do what you think they do, if you think they do anything like such blocks in C or Java. For example:

var x = 1;
{
  var x = 2;
}
console.log(x); // outputs 2

  

 

This outputs 2 because the var x statement within the block is in the same scope as thevar x statement before the block. In C or Java, the equivalent code would have outputted 1.

Starting with ECMAScript 6, the let variable declaration is block scoped. See the letreference page for more information.

posted @ 2015-06-25 23:42  hephec  阅读(394)  评论(0编辑  收藏  举报