Elegant way to select key in object of an array - javascript
Consider having the following json
[
{'key1': { ... }},
{'key2': { ... }},
{'key3': { ... }}
]
I want to extract the keys for those objects in an elegant way, the following code is working, but it seems ugly to me.
let result = objects.map(o => Object.keys(o))[0]
the [0] at the end because the returned value is an array of array
You can use .concat() and .map() methods to get the desired result:
let data = [
{'key1': { }},
{'key2': { }},
{'key3': { }}
];
let result = [].concat(...data.map(Object.keys));
console.log(result);
References:
Array.prototype.concat()
Array.prototype.map()
Object.keys()
Spread Syntax
An array can only hold values, objects hold key/value pairs. Don't forget to use JSON.parse(json) before actually manipulating the data.
I'm guessing you need something along the lines of:
const list = [
{1: "one"},
{2: "two"},
{3: "three"}
];
I edited your JSON.
const data = [
{ 'key2': { }} ,
{'key1': { }},
{'key3': { }}
];
const result = [].concat.apply([], data.map(Object.keys));
console.log(result);
Related
How to name Values in array by values in different array?
I have two arrays: The first contains unique names of fields in a nested array: [0][0]:Name1 [0][1]:Name2 [0][2]:Name3 etc. The second contains multiple items with values in a nested array like this: [0][0] XYZ [0][1] XYZA [0][2] XYZ2 [1][0] XYZaa [1][1] XYZas [1][2] XYA etc What I want to do is to merge it and name it in this way: [0] Name1: XYZ [0] Name2: XYZA [0] Name3: XYZ2 [1] Name1: XYZaa [1] Name2: XYZas [1] Name3: XYA To achieve this I first attempted the following: var mergedArr = name.concat(data); That works fine, however I believe I can also use lodash to get closer to what I want: _.merge(name, data) and should work fine too. I was trying to name it by using _.zipObject Yet it doesn't work the way I would like I was trying few options with zip, zipObject, yet non of it gave me expected output. Edit1: how I created arrays: $("#T1020 tr").each(function(x, z){ name[x] = []; $(this).children('th').each(function(xx, zz){ name[x][xx] = $(this).text(); }); }) $("#T1020 tr").each(function(i, v){ data[i] = []; $(this).children('td').each(function(ii, vv){ data[i][ii] = $(this).text(); }); })
If I understand your question correctly, you're wanting to zip array1 and array2 into a single array where: each item of the result array is an object the keys of each object are values of array1[0], and the values of each key corresponding nested array of array2 To produce the following: [ { "name1": "xyz", "name2": "xyza", "name3": "xyz2" }, { "name1": "xyzaa", "name2": "xyzas", "name3": "xya" } ] This can be achieved without lodash; first map each item of array2 by a function where array1[0] is reduced to an object. The reduced object is composed by a key that is the current reduce item, and a value that is taken from the indexed value of the current map item: const array1 = [ ['name1', 'name2', 'name3'] ] const array2 = [ ['xyz', 'xyza', 'xyz2'], ['xyzaa', 'xyzas', 'xya'] ] const result = array2.map((item) => { /* Reduce items of array1[0] to an object that corresponds to current item of array2 */ return array1[0].reduce((obj, value, index) => { return { ...obj, [value]: item[index] }; }, {}); }); console.log(JSON.stringify(result, null, ' '));
Iterate the values (your array2) and take the sub-array from the keys (array) using the current index and the % operator. This will ensure that if that the keys are taken in a cyclic way (see example with keys2 and values2). Convert to object with _.zipObject: const fn = (keys, values) => values.map((v, i) => _.zipObject(keys[i % keys.length], v)) const keys1 = [['name1', 'name2', 'name3']] const values1 = [['xyz', 'xyza', 'xyz2'], ['xyzaa', 'xyzas', 'xya']] const keys2 = [['name1', 'name2', 'name3'], ['name11', 'name12', 'name13']] const values2 = [['xyz', 'xyza', 'xyz2'], ['xyzaa', 'xyzas', 'xya'], ['abc', 'def', 'hij']] console.log(fn(keys1, values1)) console.log(fn(keys2, values2)) <script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.11/lodash.js"></script>
Destructuring data from a multidimensional array
I have an array of nested objects, like so: const objArr = [{obj, obj, objIWant}, {obj, obj, objIWant}, {obj, obj, objIWant}] Is there a way to get to objIWant without having to loop twice like: ObjArr.map((obj)=> obj.map(({ objIWant }) => myFunc(objIWant))) I was hoping I could perhaps leverage destructuring but trying something like [{ objIWant }] = objArr only returns the first objIWant. Am I missing something about destructuring syntax that would allow for this? Many thanks!
No - the only way to do it is with nested map calls. ObjArr.map(obj => obj.map(({ objIWant }) => myFunc(objIWant)); If you are able to do so, you could change myFunc: myFunc({ objIWant }) {...} And then change your code to do this: ObjArr.map(obj => obj.map(myFunc)); But there's no way using destructuring to do what you're asking.
Destructuring will not make it look cleaner. This is the only way to destructure the properties you want. Using the map function as you are now is a cleaner way of doing it. const objArr = [{obj:1, obj2:2, objIWant:3}, {obj:4, obj2:5, objIWant:6}, {obj:7, obj2:8, objIWant:9}]; const [{objIWant}, {objIWant:test2}, {objIWant:test3}] = objArr; window.console.log(objIWant); window.console.log(test2); window.console.log(test3);
Not sure if your structure is expected to return an array of objects - or an array of values from each object. But the solution would be the same - use .map() on the original array to return the values (or objects) that you want. const objArr = [ {id: 1, name: 'first item', value: 1}, {id: 2, name: 'second item', value: 2}, {id: 3, name: 'third item', value: 3} ]; const objIWant = 'value'; const result = objArr.map(item => item[objIWant]); console.log(result); // expected output: Array ["1", "2", "3"] if its a nested object then same deal - use .map() on the original array to construct a new array of the desired objects. const objArr = [ {"obj": {id: 1}, "obj": { id:1 } , "objIWant": { id:1 }}, {"obj": {id: 1}, "obj": { id:1 } , "objIWant": { id:2 }}, {"obj": {id: 1}, "obj": { id:1 } , "objIWant": { id:3 }} ]; const objIWant = 'objIWant'; const result = objArr.map(item => item[objIWant]); console.log(result); // expected output: Array [{"id": 1},{"id": 2},{"id": 3}]
Fast way to flatten an array of objects in Javascript
I have an array of generated objects like the following: [ {obj1: { key: 'value' }}, {obj2: { key: 'value2' }}, {obj3: { key: 'value3' }} ] I would like to flatten the array, with the following output: [ { key: 'value' }, { key: 'value2' }, { key: 'value3' } ] I am doing this with a for loop, which works, but the array will be quite large in size and wonder if there is a more efficient way to do this? for (var key in array) { let obj = array[key]; for (var key in obj) { newArray.push(obj[key]); } } output: newArray: [ { key: 'value' }, { key: 'value2' }, { key: 'value3' } ] I'm looking for the simplest method, ES6 or Lodash also welcome for solutions. Updated to reflect correct array format.
You can simply use reduce and Object.values let arr = [{obj1: {key: `value`}},{obj2: {key: `value2` }},{obj3: {key: `value3`}}] let op = arr.reduce((op,e)=> op.concat(Object.values(e)),[]) console.log(op) You can use simple for loop when you care about speed. let arr = [{obj1: {key: `value`}},{obj2: {key: `value2` }},{obj3: {key: `value3`}}] let op = [] for(let i=0; i<arr.length; i++){ let values = Object.values(arr[i]) op = op.concat(values) } console.log(op)
You can use Array.map, and Object.values. Map "maps" each element in an array to a new array. It takes each element of an array, and performs an operation on it. The result of this operation becomes the corresponding element in a new Array. This new Array is what's returned. To convert Objects into Arrays: you can use Object.values, Object.keys, and Object.entries. Object.values de-references each key in an object, and turns it into an array element holding that key's value. const arr = [ {obj1: {key: 'value'}}, {obj2: {key: 'value2'}}, {obj3: {key: 'value3'}} ]; let newArr = arr.map(obj => ( {key: Object.values(obj)[0].key} )); console.log(newArr); To return an object, it must be wrapped in parenthesis. In the first iteration, obj == { obj1: { key: 'value' }}, the first element in the input Array, arr. And, Object.values(obj) == [{key: 'value'}] So, we need to grab the element at index 0 to pull the object out of the array {key: 'value'}. Alternatively, if you know you can rely on the naming structure of the elements in your array (the outer object's key), you could do this, which may be easier to reason about: const arr = [ {obj1: {key: 'value'}}, {obj2: {key: 'value2'}}, {obj3: {key: 'value3'}} ]; let newArr2 = arr.map( (obj, i) => ( { key: obj['obj'+(i+1)].key } )); console.log(newArr2); Note: you'll need to wrap the i+1 in parenthesis, to force addition to take precedence over JS auto type conversion and string concatenation. Otherwise instead of obj1, obj2, obj3, you'll get obj01, obj11, obj21 as the object keys.
How to convert an Object {} to an Array [] of key-value pairs in JavaScript
I want to convert an object like this: {"1":5,"2":7,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0} into an array of key-value pairs like this: [[1,5],[2,7],[3,0],[4,0]...]. How can I convert an Object to an Array of key-value pairs in JavaScript?
You can use Object.keys() and map() to do this var obj = {"1":5,"2":7,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0} var result = Object.keys(obj).map((key) => [Number(key), obj[key]]); console.log(result);
The best way is to do: var obj = {"1":5,"2":7,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0} var result = Object.entries(obj); console.log(result); Calling entries, as shown here, will return [key, value] pairs, as the caller requested. Alternatively, you could call Object.values(obj), which would return only values.
Object.entries() returns an array whose elements are arrays corresponding to the enumerable property [key, value] pairs found directly upon object. The ordering of the properties is the same as that given by looping over the property values of the object manually. - https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/entries#Description The Object.entries function returns almost the exact output you're asking for, except the keys are strings instead of numbers. const obj = {"1":5,"2":7,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0}; console.log(Object.entries(obj)); If you need the keys to be numbers, you could map the result to a new array with a callback function that replaces the key in each pair with a number coerced from it. const obj = {"1":5,"2":7,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0}; const toNumericPairs = input => { const entries = Object.entries(input); return entries.map(entry => Object.assign(entry, { 0: +entry[0] })); } console.log(toNumericPairs(obj)); I use an arrow function and Object.assign for the map callback in the example above so that I can keep it in one instruction by leveraging the fact that Object.assign returns the object being assigned to, and a single instruction arrow function's return value is the result of the instruction. This is equivalent to: entry => { entry[0] = +entry[0]; return entry; } As mentioned by #TravisClarke in the comments, the map function could be shortened to: entry => [ +entry[0], entry[1] ] However, that would create a new array for each key-value pair, instead of modifying the existing array in place, hence doubling the amount of key-value pair arrays created. While the original entries array is still accessible, it and its entries will not be garbage collected. Now, even though using our in-place method still uses two arrays that hold the key-value pairs (the input and the output arrays), the total number of arrays only changes by one. The input and output arrays aren't actually filled with arrays, but rather references to arrays and those references take up a negligible amount of space in memory. Modifying each key-value pair in-place results in a negligible amount of memory growth, but requires typing a few more characters. Creating a new array for each key-value pair results in doubling the amount of memory required, but requires typing a few less characters. You could go one step further and eliminate growth altogether by modifying the entries array in-place instead of mapping it to a new array: const obj = {"1":5,"2":7,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0}; const toNumericPairs = input => { const entries = Object.entries(obj); entries.forEach(entry => entry[0] = +entry[0]); return entries; } console.log(toNumericPairs(obj));
To recap some of these answers now on 2018, where ES6 is the standard. Starting with the object: let const={"1":9,"2":8,"3":7,"4":6,"5":5,"6":4,"7":3,"8":2,"9":1,"10":0,"12":5}; Just blindly getting the values on an array, do not care of the keys: const obj={"1":9,"2":8,"3":7,"4":6,"5":5,"6":4,"7":3,"8":2,"9":1,"10":0,"12":5}; console.log(Object.values(obj)); //[9,8,7,6,5,4,3,2,1,0,5] Simple getting the pairs on an array: const obj={"1":9,"2":8,"3":7,"4":6,"5":5,"6":4,"7":3,"8":2,"9":1,"10":0,"12":5}; console.log(Object.entries(obj)); //[["1",9],["2",8],["3",7],["4",6],["5",5],["6",4],["7",3],["8",2],["9",1],["10",0],["12",5]] Same as previous, but with numeric keys on each pair: const obj={"1":9,"2":8,"3":7,"4":6,"5":5,"6":4,"7":3,"8":2,"9":1,"10":0,"12":5}; console.log(Object.entries(obj).map(([k,v])=>[+k,v])); //[[1,9],[2,8],[3,7],[4,6],[5,5],[6,4],[7,3],[8,2],[9,1],[10,0],[12,5]] Using the object property as key for a new array (could create sparse arrays): const obj={"1":9,"2":8,"3":7,"4":6,"5":5,"6":4,"7":3,"8":2,"9":1,"10":0,"12":5}; console.log(Object.entries(obj).reduce((ini,[k,v])=>(ini[k]=v,ini),[])); //[undefined,9,8,7,6,5,4,3,2,1,0,undefined,5] This last method, it could also reorganize the array order depending the value of keys. Sometimes this could be the desired behaviour (sometimes don't). But the advantage now is that the values are indexed on the correct array slot, essential and trivial to do searches on it. Map instead of Array Finally (not part of the original question, but for completeness), if you need to easy search using the key or the value, but you don't want sparse arrays, no duplicates and no reordering without the need to convert to numeric keys (even can access very complex keys), then array (or object) is not what you need. I will recommend Map instead: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map let r=new Map(Object.entries(obj)); r.get("4"); //6 r.has(8); //true
In Ecmascript 6, var obj = {"1":5,"2":7,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0}; var res = Object.entries(obj); console.log(res); var obj = { "1": 5, "2": 7, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 0, "10": 0, "11": 0, "12": 0 }; var res = Object.entries(obj); console.log(res);
Yet another solution if Object.entries won't work for you. const obj = { '1': 29, '2': 42 }; const arr = Array.from(Object.keys(obj), k=>[`${k}`, obj[k]]); console.log(arr);
Use Object.keys and Array#map methods. var obj = { "1": 5, "2": 7, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 0, "10": 0, "11": 0, "12": 0 }; // get all object property names var res = Object.keys(obj) // iterate over them and generate the array .map(function(k) { // generate the array element return [+k, obj[k]]; }); console.log(res);
Use Object.entries to get each element of Object in key & value format, then map through them like this: var obj = {"1":5,"2":7,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0} var res = Object.entries(obj).map(([k, v]) => ([Number(k), v])); console.log(res); But, if you are certain that the keys will be in progressive order you can use Object.values and Array#map to do something like this: var obj = {"1":5,"2":7,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0}; // idx is the index, you can use any logic to increment it (starts from 0) let result = Object.values(obj).map((e, idx) => ([++idx, e])); console.log(result);
You can use Object.values([]), you might need this polyfill if you don't already: const objectToValuesPolyfill = (object) => { return Object.keys(object).map(key => object[key]); }; Object.values = Object.values || objectToValuesPolyfill; https://stackoverflow.com/a/54822153/846348 Then you can just do: var object = {1: 'hello', 2: 'world'}; var array = Object.values(object); Just remember that arrays in js can only use numerical keys so if you used something else in the object then those will become `0,1,2...x`` It can be useful to remove duplicates for example if you have a unique key. var obj = {}; object[uniqueKey] = '...';
With lodash, in addition to the answer provided above, you can also have the key in the output array. Without the object keys in the output array for: const array = _.values(obj); If obj is the following: { “art”: { id: 1, title: “aaaa” }, “fiction”: { id: 22, title: “7777”} } Then array will be: [ { id: 1, title: “aaaa” }, { id: 22, title: “7777” } ] With the object keys in the output array If you write instead ('genre' is a string that you choose): const array= _.map(obj, (val, id) => { return { ...val, genre: key }; }); You will get: [ { id: 1, title: “aaaa” , genre: “art”}, { id: 22, title: “7777”, genre: “fiction” } ]
If you are using lodash, it could be as simple as this: var arr = _.values(obj);
var obj = { "1": 5, "2": 7, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 0, "10": 0, "11": 0, "12": 0 } let objectKeys = Object.keys(obj); let answer = objectKeys.map(value => { return [value + ':' + obj[value]] });
const persons = { john: { age: 23, year:2010}, jack: { age: 22, year:2011}, jenny: { age: 21, year:2012} } const resultArray = Object.keys(persons).map(index => { let person = persons[index]; return person; }); //use this for not indexed object to change array
This is my solution, i have the same issue and its seems like this solution work for me. yourObj = [].concat(yourObj);
or you can use Object.assign(): const obj = { 0: 1, 1: 2, 2: 3}; const arr = Object.assign([], obj); console.log(arr) // arr is [1, 2, 3]
Here is a "new" way with es6 using the spread operator in conjunction with Object.entries. const data = {"1":5,"2":7,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0}; const dataSpread = [...Object.entries(data)]; // data spread value is now: [ [ '1', 5 ], [ '2', 7 ], [ '3', 0 ], [ '4', 0 ], [ '5', 0 ], [ '6', 0 ], [ '7', 0 ], [ '8', 0 ], [ '9', 0 ], [ '10', 0 ], [ '11', 0 ], [ '12', 0 ] ]
you can use 3 methods convert object into array (reference for anyone not only for this question (3rd on is the most suitable,answer for this question) Object.keys() ,Object.values(),andObject.entries() examples for 3 methods use Object.keys() const text= { quote: 'hello world', author: 'unknown' }; const propertyNames = Object.keys(text); console.log(propertyNames); result [ 'quote', 'author' ] use Object.values() const propertyValues = Object.values(text); console.log(propertyValues); result [ 'Hello world', 'unknown' ] use Object.entires() const propertyValues = Object.entires(text); console.log(propertyValues); result [ [ 'quote', 'Hello world' ], [ 'author', 'unknown' ] ]
Use for in var obj = { "10":5, "2":7, "3":0, "4":0, "5":0, "6":0, "7":0, "8":0, "9":0, "10":0, "11":0, "12":0 }; var objectToArray = function(obj) { var _arr = []; for (var key in obj) { _arr.push([key, obj[key]]); } return _arr; } console.log(objectToArray(obj));
Recursive convert object to array function is_object(mixed_var) { if (mixed_var instanceof Array) { return false; } else { return (mixed_var !== null) && (typeof( mixed_var ) == 'object'); } } function objectToArray(obj) { var array = [], tempObject; for (var key in obj) { tempObject = obj[key]; if (is_object(obj[key])) { tempObject = objectToArray(obj[key]); } array[key] = tempObject; } return array; }
We can change Number to String type for Key like below: var obj = {"1":5,"2":7,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0} var result = Object.keys(obj).map(function(key) { return [String(key), obj[key]]; }); console.log(result);
you can use _.castArray(obj). example: _.castArray({ 'a': 1 }); // => [{ 'a': 1 }]
How do I get a specific object from an immutable js map by value?
I created an immutable map (with Immutable-JS) from a list of objects: var result = [{'id': 2}, {'id': 4}]; var map = Immutable.fromJS(result); Now i want to get the object with id = 4. Is there an easier way than this: var object = map.filter(function(obj){ return obj.get('id') === 4 }).first();
Essentially, no: you're performing a list lookup by value, not by index, so it will always be a linear traversal. An improvement would be to use find instead of filter: var result = map.find(function(obj){return obj.get('id') === 4;});
The first thing to note is that you're not actually creating a map, you're creating a list: var result = [{'id': 2}, {'id': 4}]; var map = Immutable.fromJS(result); Immutable.Map.isMap(map); // false Immutable.List.isList(map); // true In order to create a map you can use a reviver argument in your toJS call (docs), but it's certainly not the most intuitive api, alternatively you can do something like: // lets use letters rather than numbers as numbers get coerced to strings anyway var result = [{'id': 'a'}, {'id': 'b'}]; var map = Immutable.Map(result.reduce(function(previous, current) { previous[ current.id ] = current; return previous; }, {})); Immutable.Map.isMap(map); // true Now we have a proper Immutable.js map which has a get method var item = Map.get('a'); // {id: 'a'}
It may be important to guarantee the order of the array. If that's the case: Use an OrderedMap Do a set method on the OrderedMap at each iteration of your source array The example below uses "withMutations" for better performance. var OrderedMap = Immutable.OrderedMap // Get new OrderedMap function getOm(arr) { return OrderedMap().withMutations(map => { arr.forEach(item => map.set(item.id, item)) }) } // Source collection var srcArray = [ { id: 123, value: 'foo' }, { id: 456, value: 'bar' } ] var myOrderedMap = getOm(srcArray) myOrderedMap.get(123) // --> { id: 123, value: 'foo' } myOrderedMap.toObject() // --> { 123: {id: 123, value: 'foo'}, 456: {id: 456, value: 'bar'} } myOrderedMap.toArray() // --> [ {id: 123, value: 'foo'}, { id: 456, value: 'bar' } ]
When using fromJS for array, you'll get List not map. It will be better and easier if you create a map. The following code will convert the result into Immutable map. const map = result.reduce((map, json) => map.set(json.id, Immutable.fromJS(json)) , Map()); Now, you can map.get('2'); //{'id': 2} Note, if the result has nested structure and if that has array, it will be a List with the above code.
With ES2015 syntax (and constants): const result = map.find(o => o.get('id') === 4);
Is there already a way thats easier? I don't know. but you can write your own function. Something like this should work: var myFunc = function(id){ var object = map.filter(function(obj){return obj.get('id') === id}).first(); return object; } Then you would just do: var myObj = myFunc(4);