Node.js examples for String:String Value
Get bytes from String
String.prototype.getBytes = function () { var bytes = []; for (var i = 0; i < this.length; i++) { bytes.push(this.charCodeAt(i));/* w w w . j av a 2 s.c om*/ } return bytes; };