Skip to content

Instantly share code, notes, and snippets.

@edinsoncs
Created October 23, 2015 06:57
Show Gist options
  • Save edinsoncs/d94a64b725162f313e03 to your computer and use it in GitHub Desktop.
Save edinsoncs/d94a64b725162f313e03 to your computer and use it in GitHub Desktop.
Shift and Sort
/*shift and sort*/
function active(arr, orde) {
var array = arr;
array = "Esto es Sort: "+array.sort() +" Esto es Eliminar 0 de array: "+ array.shift();
return array;
}
active(['edinson', 'apple', 'google', 'javascripter', 'developer'], ['sort']);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment