DonJayamanne/typescript-notebook

Problem with JavaScript iteration

Opened this issue · 0 comments

When I run an iteration with 2 console.logs it logs the
1
6

const arr = [1,2,3,4,5];
arr.forEach(item=>{
    console.log(item)
    console.log(item +1)
})

If I comment out one of the console.logs it logs correctly. Like, if I log out the second console.log, I get
1
2
3
4
5
6