Macromedia Flash Professional 8 UNLEASHED [Electronic resources] نسخه متنی

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

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

Macromedia Flash Professional 8 UNLEASHED [Electronic resources] - نسخه متنی

David Vogeleer, Eddie Wilson, Lou Barber

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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






Undefined Data Type


Much like null, undefined represents the absence of data. However, unlike null, undefined can be assigned in several ways:

  • It can be manually assigned in the Actions panel.

  • The interpreter will assign it if a variable does not exist.

  • The interpreter will assign it if a variable has no value.


Let's take a look at the undefined data type in action.


var myTitle_str:String;
trace (typeof(myTitle_str));
// output: undefined

Like null, because undefined represents the absence of data, it is only equal to itself and null.


/ 318