JavaScript TypedArray keys() MethodThe JavaScript keys() method is an inbuilt function in JavaScript. This method returns an Array Iterator object with the keys of an array. What is Iterator?An iterator is an object that keeps 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:It returns a new array iterator object containing the keys for each index of the elements of the given array. Browser Support:
ExampleJavaScript TypedArray keys() Method Test it NowOutput: 0 1 Next TopicJavaScript TypedArray Object |
We provides tutorials and interview questions of all technology like java tutorial, android, java frameworks
G-13, 2nd Floor, Sec-3, Noida, UP, 201301, India