typescript-notebook icon indicating copy to clipboard operation
typescript-notebook copied to clipboard

Problem with JavaScript iteration

Open rebeccapeltz opened this issue 3 years ago • 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

rebeccapeltz avatar Jun 12 '22 04:06 rebeccapeltz