Skip to content

Instantly share code, notes, and snippets.

@johnbeech
Created April 8, 2017 13:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save johnbeech/efc7bfd470ada30bb455a9a83cdd953b to your computer and use it in GitHub Desktop.
Save johnbeech/efc7bfd470ada30bb455a9a83cdd953b to your computer and use it in GitHub Desktop.
Function to move items between arrays
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