prototype  Error  class propertyS2C Home  « Globals « Error « prototype

Description

Enables property assignment to objects of type Error.

  • Like all class properties prototype should be used on the class rather than an instance of the class.

Syntax

Signature Description
Error.prototypeEnables property assignment to objects of type Error.

Parameters

None.

Examples

The code below displays Error prototype.



alert('Error prototype is ' + Error.prototype);

Press the button below to action the above code:


Related Tutorials

JavaScript Advanced Tutorials - Lesson 2 - Errors


go to home page Homepage go to top of page Top