I started programming a bit with HTML/CSS/js and I have a table with several rows with 2 elements each I was wondering how it's possible to give certain td Elements a text through a JavaScript function without giving them all an unique id or something.
I am searching for something similar to
for(i = 0; i < 10; i++) {
table.at[i] = i+3;
}
and I am missing the at[i]
part for it.