JMap.Util.Array.clear
Removes all items of the specified array, making it empty.
the array
the given array (and not a copy)
JMap.Util.Array.findByProperty
Search for first element in the given object array, for a given attribute name and value.
the array
the object property name
object's value for the given property name
the found object, undefined if not found
JMap.Util.Array.findIndexByProperty
Search for first element index in the given object array, for a given attribute name and value.
the array
the object property name
object's value for the given property name
by default test the value like "===", if nonStrict is true, will test like "=="
the found index, -1 if not found
JMap.Util.Array.getCopyWithoutDuplicate
Get a copy of the given array without duplicate.
the array
given array copy, without duplicate
JMap.Util.Array.remove
Remove given element in given array.
the array
the element to remove
the given array (and not a copy)
JMap.Util.Array.removeByProperty
Remove the first occurence.
the array
the object property name
object's value for the given property name
by default test the value like "===", if nonStrict is true, will test like "=="
the given array (and not a copy)
JMap.Util.Array
Here you'll find all array related methods