| $.isArray ( object ) | ใช้ตรวจสอบว่า object ที่กำหนดใช่ array หรือไม่ |
|---|
syntax:$.isArray ( object )
return type:boolean
content:ใช้ตรวจสอบว่า object ที่กำหนดใช่ array หรือไม่
example:if ( $.isArray ( [ ] ) ) { alert ( "This object is array." ); } else { alert ( "This object is not array." ); }