Class Array
Package: | Global |
Class: | Array |
Extends: | Object |
Defined In: | Ext.js |
Properties
-
Methods
-
Events
Public Properties
This class has no public properties.
Public Methods
|
indexOf( Object o ) : Number |
Array |
Checks whether or not the specified object exists in the array. |
|
remove( Object o ) : void |
Array |
Removes the specified object from the array. If the object is not found nothing happens. |
Public Events
This class has no public events.
Method Details
indexOf
public function indexOf( Object o
)
Checks whether or not the specified object exists in the array.
Parameters:
o
: ObjectThe object to check for
Returns:
This method is defined by Array.
remove
public function remove( Object o
)
Removes the specified object from the array. If the object is not found nothing happens.
Parameters:
o
: ObjectThe object to remove
Returns:
This method is defined by Array.