Skip to content

Instantly share code, notes, and snippets.

@ilanl
Created March 26, 2020 11:21
Show Gist options
  • Save ilanl/f4023d71db2640076d85c3df6282f719 to your computer and use it in GitHub Desktop.
Save ilanl/f4023d71db2640076d85c3df6282f719 to your computer and use it in GitHub Desktop.
array up and down
const arr = [ ...Array(100).keys() ].map( i => i+1).sort((a, b) => a-b);
console.log(...arr)
var results = []
while (arr.length > 0) {
results.push(arr.shift())
results.push(arr.pop())
}
console.log(...results)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment