Convert String to int 32 - Node.js String

Node.js examples for String:Parse

Description

Convert String to int 32

Demo Code

String.prototype.ToInt32 = function () {
    return parseInt(this);
};

Related Tutorials