Skip to content

Instantly share code, notes, and snippets.

@juliettech13
Last active July 15, 2020 04:05
Show Gist options
  • Save juliettech13/d590690771ea31a0860121cac80ce3e5 to your computer and use it in GitHub Desktop.
Save juliettech13/d590690771ea31a0860121cac80ce3e5 to your computer and use it in GitHub Desktop.
let paragraph = document.querySelector('p');
console.log(paragraph);
// => <p>Hello World!</p>
paragraph = document.querySelector('#bio');
console.log(paragraph);
// => <p id="bio">Hello World!</p>
paragraph = document.querySelector('.text');
console.log(paragraph);
// => <p class="text">Hello World!</p>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment