DonJayamanne / typescript-notebook

Run JavaScript and TypeScript in node.js within VS Code notebooks with excellent support for debugging, tensorflowjs visulizations, plotly, danfojs, etc
https://marketplace.visualstudio.com/items?itemName=donjayamanne.typescript-notebook
MIT License
904 stars 39 forks source link

Problem with JavaScript iteration #66

Open rebeccapeltz opened 2 years ago

rebeccapeltz commented 2 years ago

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