Last active
July 15, 2020 04:05
-
-
Save juliettech13/d590690771ea31a0860121cac80ce3e5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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