typescript-notebook
typescript-notebook copied to clipboard
Problem with JavaScript iteration
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