Simple question for someone checking out d3 4: https://jsfiddle.net/dwrzso58/
d3.select("body")
.data([1,2,3])
.enter()
.append("div")
.text((d,i)=>d)
when this code runs only 2 and 3 show up in the DOM. What gives with the first element in the array being lost?