How to convert an Object to an Array 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);

 

Was this post helpful?
Let us know if you liked the post. That’s the only way we can improve.
Yes0
No1
Harinder Singh

Harinder Singh

My name is Harinder Singh and I specialize in Software industry. I consider myself as a life learner. I love learning new concepts, embracing new ideas and reading and searching for innovation.