Last active
September 12, 2018 17:41
-
-
Save sobchenyuk/70c469a8e05958caff545469dea693e2 to your computer and use it in GitHub Desktop.
Работа с коллекцией
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const elements = document.querySelectorAll('#elem li'); <-- получаеш колекцию элементов. | |
const iteration = elem => console.log(elem); | |
elements.forEach(iteration); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment