why query selector is not selecting () classes code example
Example 1: javascript queryselector
//Pretend there is a <p> with class "example"
const myParagraph = document.querySelector('.example');
//You can do many this with is
myParagraph.textContent = 'This is my new text';
Example 2: Which DOM method follows CSS syntax?
/*Do this for classes*/
document.querySelector(".example");
/*Do this for IDs*/
document.querySelector("#example");
/*This selects all of the elements in those groups*/