Node.js examples for String:Char
Iterate through a string character by character
String.prototype.forEach = function (call) { for (var i = 0; i < this.length; i++) { call(this[i]);//from ww w . j a va2 s . c o m } };