diff --git a/es6.md b/es6.md index 5d4361f4d..4398784dd 100644 --- a/es6.md +++ b/es6.md @@ -250,7 +250,7 @@ This example assigns `x` to the value of the `left` key. ### Loops ```js -for (let {title, artist} in songs) { +for (let {title, artist} of songs) { ยทยทยท } ```