Javascript String sayHello()

Description

Javascript String sayHello()


String.prototype.sayHello = function() {
    return "Hello, " + this;
}



PreviousNext

Related