Removes all elements from the list.
Determines whether the list contains the specified element.
The value to check for.
True if the element is found, otherwise false.
Performs the specified action for each element in a list.
A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the list.
OptionalthisArg: anyAn object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.
Calls a defined callback function on each element of a list, and returns a list that contains the results.
A function that accepts up to three arguments. The map method calls the callbackfn function one time for each element in the list.
OptionalthisArg: anyAn object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.
Represends a generic doubly-linked list.