I want to add brackets to a players score, but when updating on an interval it's also appending both string brackets multiple times instead of once.
setInterval(() => {
for(let i in topmass){
topmass[i].innerText = "[" + topmass[i].textContent + "]"
}
}, 100)
Name: [score] not: Name: [[[[[[score]]]]]]