Overview
This guides highlights the basic parts of javascript that can be used in davinci blog to add dynamic features or powerful analytics. For programmers with experience programming python, the python to javascript guide may be more useful.One way to iterate through an array of items is to use a for loop.
let data = [1,2,3,4,5,6,7,8,9]
let total = 0;
for(let item of data){
total+=1;
}