JavaScript String prototype Property
THE WORLD'S LARGEST WEB DEVELOPER SITE

JavaScript String prototype Property

❮ JavaScript String Reference

Example

Use the prototype property to add a new property to all objects of a given type:

function employee(name, jobtitle, born) {
    this.name = name;
    this.jobtitle = jobtitle;
    this.born = born;
}
employee.prototype.salary = 2000;

var fred = new employee("Fred Flintstone", "Caveman", 1970);
Try it Yourself »

Definition and Usage

The prototype property allows you to add new properties and methods to existing object types.

Note: Prototype is a global property which is available with almost all JavaScript objects.


Browser Support

Property
prototype Yes Yes Yes Yes Yes

Syntax

object.prototype.name = value

Technical Details

Return Value: A reference to the String.prototype object
JavaScript Version: ECMAScript 1

❮ JavaScript String Reference