is()

Type : public method

Support : 0.7

Return : Boolean

  • 해당개체가 Object이면 true 반환.
    Array는 false
  • ※ null은 제외 (v1.0)

Methods

  • is( obj ) : Booleanver 0.7~

    • obj : Object
      대상 Object

Example

var obj = { a: 1, b:[] };
var isObject = $B.object.is( obj );// true