Get bytes from String - Node.js String

Node.js examples for String:String Value

Description

Get bytes from String

Demo Code


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;
};

Related Tutorials