Skip to content

Instantly share code, notes, and snippets.

@jayzeng
Created March 19, 2014 20:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jayzeng/9650477 to your computer and use it in GitHub Desktop.
Save jayzeng/9650477 to your computer and use it in GitHub Desktop.
left shifting
function shift(input, pos) {
return input.slice(pos, input.length) + input.slice(0, pos);
}
console.log(shift("abcdefg", 2) === "cdefgab");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment