Answers for "js array entries"

1

js array entries

The entries() method returns a new Array Iterator 
object that contains the key/value pairs for each index in the array.
Posted by: Guest on May-20-2021
0

js entries

const object1 = { a: 'somestring', b: 42 };
for (const [key, value] of Object.entries(object1)) {
  console.log(`${key}: ${value}`);
} // expected output: "a: somestring" "b: 42" order is not guaranteed
Posted by: Guest on December-30-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language