Skip to content

Instantly share code, notes, and snippets.

@jarretgabel
Created November 8, 2018 15:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jarretgabel/086af0512c369de813060594ed02bd8b to your computer and use it in GitHub Desktop.
Save jarretgabel/086af0512c369de813060594ed02bd8b to your computer and use it in GitHub Desktop.
let apples = document.querySelectorAll(".apple");
let oranges = document.querySelectorAll(".orange");
let fruit = { apples: apples, oranges:oranges };
// same as
let fruit = { apples, oranges };
console.log(fruit.apples) // NodeList
console.log(fruit.orange.length) // Number
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment