map object to array javascrit code example
Example 1: map through keys javascript
var myObject = { 'a': 1, 'b': 2, 'c': 3 };
Object.keys(myObject).map(function(key, index) {
myObject[key] *= 2;
});
console.log(myObject);
// => { 'a': 2, 'b': 4, 'c': 6 }
Example 2: javascript map
array.map((item) => {
return item * 2
} // an example that will map through a a list of items and return a new array with the item multiplied by 2