Extra bracket removed in syntax section (#27705)

pull/28625/head^2
Sai Kiran 2019-01-31 03:55:04 +05:30 committed by Randell Dawson
parent 2f57c6131c
commit 7ea103fbfc
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ title: For Loop
### Syntax
```javascript
for ([initialization]); [condition]; [final-expression]) {
for ([initialization]; [condition]; [final-expression]) {
// statement
}
```