$$('img') //select all images
$$('.page-section')[0].style // look at the styles for elements with page-section class
let elements = $$('a');
for (thing in elements) {
console.log(elements[thing].href);
}
let elements = $$('img');
for (thing in elements) {
elements[thing].style='border: 3px solid red'
}