Javascript [Electronic resources] : The Definitive Guide (4th Edition) نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

Javascript [Electronic resources] : The Definitive Guide (4th Edition) - نسخه متنی

David Flanagan

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید

Availability



JavaScript 1.5; JScript 5.5; ECMAScript
v3

Inherits from/Overrides


Inherits from Error


Constructor

new EvalError( )
new EvalError(message)

Arguments


message

An optional error message that provides details about the exception.
If specified, this argument is used as the value for the
message property of the EvalError object.


Returns


A newly constructed EvalError object. If the
message argument is specified, the Error
object will use it as the value of its message
property; otherwise, it will use an implementation-defined default
string as the value of that property. When the EvalError(
) constructor is called as a function, without the
new operator, it behaves just as it does when
called with the new operator.


Properties


message

An error message that provides details about the exception. This
property holds the string passed to the constructor or an
implementation-defined default string. See
Error.message for details.

name

A string that specifies the type of the exception. All EvalError
objects inherit the value "EvalError" for this property.


Description


An instance of the EvalError class may be thrown when the global
function eval( ) is invoked under any other name.
See eval( ) for an explanation of the restrictions on
how this function may be invoked. See Error for details
about throwing and catching exceptions.


See Also


Error, Error.message, Error.name

/ 844