Skip to content

Instantly share code, notes, and snippets.

@ZucchiniZe
Created January 22, 2015 02:30
Show Gist options
  • Select an option

  • Save ZucchiniZe/3e6aa8a0fe9eb65583c0 to your computer and use it in GitHub Desktop.

Select an option

Save ZucchiniZe/3e6aa8a0fe9eb65583c0 to your computer and use it in GitHub Desktop.
function middleWay(a, b) {
if(a.length % 2 !== 0 && b.length % 2 !== 0) {
return [a[Math.floor(a.length/2)], b[Math.floor(b.length/2)]];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment