Tell us what’s happening:
can anyone please tell me what’s wrong with my code and point me in the right direction ?
Your code so far
function copyMachine(arr, num) {
let newArr = [];
while (num >= 1) {
// change code below this line
newArr = [...arr] * num ;
// change code above this line
num--;
}
return newArr;
}
// change code here to test different cases:
console.log(copyMachine([true, false, true], 2));
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36
.
Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-data-structures/copy-an-array-with-the-spread-operator