Skip to content

Instantly share code, notes, and snippets.

@madhoshyagnik
Created April 14, 2024 03:56
Show Gist options
  • Save madhoshyagnik/78036f88d8eba508f250f83bf8b6245f to your computer and use it in GitHub Desktop.
Save madhoshyagnik/78036f88d8eba508f250f83bf8b6245f to your computer and use it in GitHub Desktop.
const para = document.querySelector('p');
// para.innerText += 'ninjas are awesome';
// console.log(para.innerText);
const paras = document.querySelectorAll('p');
paras.forEach(element => {
element.innerText += ' new text';
console.log(element.innerText);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment