Labels a statement with an identifier.
Syntax
let (expressionA, expressionB, ...) {
statementA;
statementB;
}
Example
let (x = x+10, y = 12) {
document.write(x+y + "
\n");
}
Remarks
Available in JavaScript 1.7+. Implemented in Firefox 2.0.


