Skip to content

Commit

Permalink
Merge pull request #52 from pauldariye/patch-5
Browse files Browse the repository at this point in the history
Update 009-scrapped-material.md
  • Loading branch information
MrBenJ committed Jan 5, 2019
2 parents f2a9183 + eb29334 commit aa135a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion book/009-scrapped-material.md
Expand Up @@ -83,7 +83,7 @@ nodeList.map(); // => Error: undefined is not a function
const divs = Array.from(nodeList);

divs.forEach( x => console.log(x)); // => <div></div>
divs.forEach( x => console.log(x)); // => [<div</div>,<div></div>]
console.log(divs.map( x => x )); // => [<div></div>]
```


Expand Down

0 comments on commit aa135a8

Please sign in to comment.