Skip to content

Commit 983042f

Browse files
authored
Merge pull request #648 from ju-hyun-park/master
Update article.md
2 parents a623ce4 + cd7dcd6 commit 983042f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/05-data-types/05-array-methods/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ It calls the function for each element of the array and returns the array of res
329329
For instance, here we transform each element into its length:
330330

331331
```js run
332-
let lengths = ["Bilbo", "Gandalf", "Nazgul"].map(item => item.length)
332+
let lengths = ["Bilbo", "Gandalf", "Nazgul"].map(item => item.length);
333333
alert(lengths); // 5,7,6
334334
```
335335

0 commit comments

Comments
 (0)