For the lazy vanilla JS peeps out there, I submit to you the following:
```
const qs = (selector) => document.querySelector(selector);
const qsa = (selector) => Array.from(document.querySelectorAll(selector));
```
For the lazy vanilla JS peeps out there, I submit to you the following:
```
const qs = (selector) => document.querySelector(selector);
const qsa = (selector) => Array.from(document.querySelectorAll(selector));
```