var bestValues = document.querySelectorAll('.aboutUs-column-dscr');
function get_style() {
for (i = 0; i < bestValues.length; i++) {
bestValues[i].style.color = "green";
}
}
setInterval(get_style, 1000);
function get_style() {
function f() {
if(i >= bestValues.length) return;
bestValues[i].style.color = "green";
++i;
setTimeout(f, 1000);
}
var i = 0;
f();
}
function get_style() {
for (i = 0; i < bestValues.length; i++) {
(function(i) {
setTimeout(function() { bestValues[i].style.color = "green"; }, 1000 * i);
}(i));
}
}