Hey this is my first question and I\'m just finding my way with JS. I have an array which is set, I want to loop through it and divide each value by 100, then print the output t
change the example[i/100] to example[i] /100 and you can console.log each response from inside the for loop.
example[i/100]
example[i] /100
console.log
var example = [5, 10, 15, 20]; for (var i = 0; i < example.length; i++) { console.log(example[i] / 100); }