in javascript , how can I convert a nested array to an object , for example , I have this array :
let Input_Array=[[key1,value1],[key2,value2],[key3,value3]]
//The output Object , should be like this :
let Output_Object ={
key1 : value1,
key2 : value2,
key3 : value3,
}
I guess that we will not have problem in values because we can just copy them by index by input_Array[i][1] . The issue is in keys , because if we have a key===string , must follow the pattern of an object variable .
if you any idea how to trait it , or is there a library for doing this it's better .
you should use Bracket notation
maybe this would help