Revisions

gist: 176709 Download_button fork
public
Public Clone URL: git://gist.github.com/176709.git
Embed All Files: show embed
Text only #
1
2
3
4
5
6
7
8
9
String.prototype.map = function(fun) {
    var len = this.length;
    var res = "";
    for (var i = 0; i < len; i++)
    {
      res += fun(this[i])
    }
    return res;
};