-
-
Save AitorAlejandro/7afaeeb530f47816461621cff89dec42 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
const tableEl = document.querySelector('table'); | |
const headerRow = tableEl.createTHead().insertRow(); | |
headerRow.insertCell().textContent = 'Make'; | |
headerRow.insertCell().textContent = 'Model'; | |
headerRow.insertCell().textContent = 'Color'; | |
const newRow = tableEl.insertRow(); | |
newRow.insertCell().textContent = 'Yes'; | |
newRow.insertCell().textContent = 'No'; | |
newRow.insertCell().textContent = 'Thank you'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment