Easy Tutorial
❮ Traversing Prevuntil Event Focusin ❯

jQuery.isArray() Method

jQuery Miscellaneous Methods

Example

Determine if the specified parameter is an array.

Is [] an array?<b></b>
<script>
    $(function () { 
        $( "b" ).append( "" + $.isArray([]) );
    })
</script>

Definition and Usage

The $.isArray() function is used to determine if the specified parameter is an array.


Syntax

Parameter Description
object Any type The arbitrary value to be evaluated.

jQuery Miscellaneous Methods

❮ Traversing Prevuntil Event Focusin ❯