Syntax
errorobj.description errorobj.description = string
The description property contains the description of the error.
This property is read/write so you can assign descriptions using this property.
<html> <script language="JScript"> <!-- var myError = new Error(45,"A really big error!"); document.write(myError.description,"'"); --> </script> </html>