Change String case upper and lower - Node.js String

Node.js examples for String:Case

Description

Change String case upper and lower

Demo Code

String.prototype.ToLower = function () {
    return this.toLowerCase();
};
String.prototype.ToUpper = function () {
    return this.toUpperCase();
};

Related Tutorials