Returns true if the invoking object is a JSON Array (a sequence of comma-separated values).
Returns true if the invoking object is a JSON Object (an unordered set of comma-separated name/value pairs).
Returns true if the invoking object is a JSON String (a collection of zero or more Unicode characters, wrapped in double quotes, using backslash escapes).
Returns true if the invoking object is a JSON Number (a series of decimal digits in either standard or scientific notation).
Iterates over the properties of the invoking object, and returns true if the closure expression is true for at least one of the iterated values.
When invoked by a String or Collection type (a JSON object or array), returns true if and only if the collection or String contains the supplied property.
Returns the number of occurences of the given value inside the invoking object. This works for all collection types, as well as Strings.
Recursively travels the object graph, starting from the invoking object, returning the first object for which the given closure evaluates to true.
Recursively travels the object graph, starting from the invoking object, returning a JSON Array of all objects for which the given closure evaluates to true.
Iterates over the properties of the invoking object, invoking the supplied closure on each item. N.B. This method does not return the value if the invocations, but rather a reference to the invoking object.
Iterates over the properties of the invoking object, invoking the supplied closure on each item. Additionally supplies each item's index (starting with zero) for use inside the closure. N.B. This method does not return the value if the invocations, but rather a reference to the invoking object.
Returns true if the leftside object and the rightside object are equivalent, i.e., if they contain the same data. This works for collection types, Strings, and Numbers.
Iterates over the properties of the invoking object, and returns true if the closure expression is true for all of the iterated values.
Iterates over the properties of the invoking object, returning the first property for which the closure expression is true.
Iterates over the properties of the invoking object, returning all properties for which the closure expression is true.