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


Synopsis

undefined

Description


undefined is a global property that holds the
JavaScript undefined value. This is the same value
that is returned when you attempt to read the value of a nonexistent
object property. The undefined property is not
enumerated by for/in loops and cannot be deleted
with the delete operator. Note that
undefined is not a constant and can be set to any
other value, something that you should take care not to do.

When testing a value to see whether it is undefined, use the
=== operator, because the ==
operator treats the undefined value as equal to
null.

/ 844