Skip to content

Instantly share code, notes, and snippets.

@sobchenyuk
Last active September 12, 2018 17:41
Show Gist options
  • Save sobchenyuk/70c469a8e05958caff545469dea693e2 to your computer and use it in GitHub Desktop.
Save sobchenyuk/70c469a8e05958caff545469dea693e2 to your computer and use it in GitHub Desktop.
Работа с коллекцией
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