JavaScript TypedArray entries() MethodThis method returns a new Array Iterator object that contains key/value pairs for each index in the array. For all item in the original array, the new iteration object will have an array with the index as the key and the item as the value. What is Iterator?An iterator is an object that have track of its current position, while accessing items in a collection one at a time. An iterator returns an object with two properties: key and value. Syntax:Parameters:No parameters. Return value:A new Array Iterator object. Browser Support:
Example 1Test it NowOutput: [0, 'javaTpoint'] [1,'Core java'] Example 2Test it NowOutput: [0, 'core Java'] [1, 'Python'] [2, 'Android']
Next TopicJavaScript TypedArray Object
|
JavaTpoint offers too many high quality services. Mail us on h[email protected], to get more information about given services.
JavaTpoint offers college campus training on Core Java, Advance Java, .Net, Android, Hadoop, PHP, Web Technology and Python. Please mail your requirement at [email protected].
Duration: 1 week to 2 week