Skip to content
Advertisement

How to insert an array to another array at each iteration of a for loop in javascript

I have a function to bubble sort and I want to save the array after each swap into another array. The bubble sort is working properly and I can log the array after each swap to the console. But I cant seem to push to the other array properly.

Here’s my code :

JavaScript

Here’s a screenshot of the console :

screenshot of console

It’s only when I try to use get a hold of the array at each step that it isn’t showing properly? what do I do?

Advertisement

Answer

I think clonning the array could work ? var temp = […arr];

JavaScript
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement