* The :js:meth:`Array.values` method returns a new iterator object that * contains the values for each index in the ``Sequence``. * @returns A new iterator object.
()
| 1848 | * @returns A new iterator object. |
| 1849 | */ |
| 1850 | values(): IterableIterator<any> { |
| 1851 | return Array.prototype.values.call(this); |
| 1852 | } |
| 1853 | /** |
| 1854 | * The :js:meth:`Array.find` method returns the first element in the provided |
| 1855 | * array that satisfies the provided testing function. |
no test coverage detected