message  Error  instance propertyS2C Home  « Globals « Error « message

Description

Contains a message decription of an Error object.

Syntax

Signature Description
anError.messageContains a message decription of an Error object.

Parameters

None.

Examples

The code below displays the message property of the Error object.



var anError = new Error('Our message here');
alert('Error message is: ' + anError.message);

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