1 2 3 4 5 6 7 8({ query(root, selector) { return root.querySelector('section'); }, queryAll(root, selector) { return Array.from(root.querySelectorAll('section')); } })
1 2 3 4 5 6 7 8
({ query(root, selector) { return root.querySelector('section'); }, queryAll(root, selector) { return Array.from(root.querySelectorAll('section')); } })