Mozilla.com

Table of contents
  1. 1. Syntax
  2. 2. Description
  3. 3. Example

JSVAL_IS_NULL

Table of contents
  1. 1. Syntax
  2. 2. Description
  3. 3. Example

Determine if a given jsval is null.

Syntax

JSVAL_IS_NULL(v)

Description

JSVAL_IS_NULL(v) is true if v is JSVAL_NULL, which is the JavaScript null value.

(Note: JSVAL_IS_OBJECT(JSVAL_NULL) is also true.)

Example

The following code snippet illustrates how a JavaScript variable, MyItem, is conditionally tested in an if statement to see if it contains a null value.

if (JSVAL_IS_NULL(MyItem)) {
    ...
}

LXR ID Search for JSVAL_IS_NULL

Page last modified 20:07, 21 Aug 2008 by Jorend

Files (0)