Created
April 8, 2017 13:07
-
-
Save johnbeech/efc7bfd470ada30bb455a9a83cdd953b to your computer and use it in GitHub Desktop.
Function to move items between arrays
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function move(a) { | |
function to(b) { | |
while (a.length > 0) { | |
let item = a.shift() | |
b.push(item) | |
} | |
} | |
return { | |
to | |
} | |
} | |
const fruit = ['apples', 'oranges', 'pears'] | |
const box = [] | |
move(fruit).to(box) | |
console.log(box) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment