Skip to content

Instantly share code, notes, and snippets.

@andres-torres-marroquin
Created July 16, 2013 23:52
Show Gist options
  • Save andres-torres-marroquin/6016321 to your computer and use it in GitHub Desktop.
Save andres-torres-marroquin/6016321 to your computer and use it in GitHub Desktop.
var asd = function (users) {
var result = [];
while ((result.length + users.length) > 5) {
last4 = users.splice(-4);
result.unshift(last4);
}
return users.concat(result);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment