Answers for "js loop map"

0

loop through map in js

var myMap = new Map();
myMap.set("0", "foo");
myMap.set(1, "bar");
myMap.set({}, "baz");

for (const [key, value] of myMap.entries()) {
  console.log(key, value);
}
Posted by: Guest on April-07-2020
3

loop through map in js

const object = {'a': 1, 'b': 2, 'c' : 3};
for (const [key, value] of Object.entries(object)) {
  console.log(key, value);
}
Posted by: Guest on April-07-2020
1

js loop trough map

for (let key of map) {
	console.log(key);
}
Posted by: Guest on November-17-2020
-1

js foreach key value

Object.keys(obj).forEach(function (key) {
   // do something with obj[key]
});
Posted by: Guest on March-22-2020
1

use map to loop through an array

let squares = [1,2,3,4].map(function (val) {  
    return val * val;  
}); 
// squares will be equal to [1, 4, 9, 16]
Posted by: Guest on November-20-2020
0

javascript map foreach

const myArray = ['Sam', 'Alice', 'Nick', 'Matt'];

// Appends text to each element of the array
const newArray = myArray.map(name => {
	return 'My name is ' + name; 
});
console.log(newArray); // ['My name is Sam', 'My Name is Alice', ...]

// Appends the index of each element with it's value
const anotherArray = myArray.map((value, index) => index + ": " + value);
console.log(anotherArray); // ['0: Sam', '1: Alice', '2: Nick', ...]

// Starting array is unchanged
console.log(myArray); // ['Sam', 'Alice', 'Nick', 'Matt']
Posted by: Guest on August-26-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language