javascrip who to give a property to every tr of table code example
Example: javascript select all table rows
const rows = document.querySelectorAll("table > tbody > tr");
// OR
const Allrows = document.querySelectorAll("tr");
const rows = document.querySelectorAll("table > tbody > tr");
// OR
const Allrows = document.querySelectorAll("tr");