Returns the item at a given index. If the index does not exist, def is returned
get([1, 2, 3], 0, 'default value'); // 1
get([1, 2, 3], 4, 0); // 0
Optional
Generated using TypeDoc
Returns the item at a given index. If the index does not exist, def is returned
Example
Example