Skip to content

Instantly share code, notes, and snippets.

@AdamMadrzejewski
Created March 13, 2015 19:16
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 AdamMadrzejewski/10cef463f9bb5752b645 to your computer and use it in GitHub Desktop.
Save AdamMadrzejewski/10cef463f9bb5752b645 to your computer and use it in GitHub Desktop.
Slice a string with .map and .call
var map = Array.prototype.map;
var result = map.call("Hello World", function(x) { return x; });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment