Skip to content

Instantly share code, notes, and snippets.

@willamesoares
Last active February 23, 2018 00:44
Show Gist options
  • Save willamesoares/9d370e0dec1650817bd470439dc015d4 to your computer and use it in GitHub Desktop.
Save willamesoares/9d370e0dec1650817bd470439dc015d4 to your computer and use it in GitHub Desktop.
function revert (arr) {
const len = arr.length
if (len === 1) {
return arr
}
const last = arr.splice(-1,1)
return last.concat(revert(arr))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment