In JavaScript, are rows and cells dynamic collections?
For example:
var myRows=myTable.rows;
var newRow=myTable.insertRow();
Will newRow automatically become part of myRows?
Sorry if it seems like a basic question, but I couldn’t find any reference with a clear answer.
table.rowsis* anHTMLCollectionwhich is live.* As specified here: