From the information above, I just want the information ‘Alaska’ and ‘2022-08-05T00:00:00.000-07:00’ . I want to get the information . How will I do that ?
Hi @Alyssa_Gono, you should be able to use the Object.values()method to get those values from the object. In this case, you could write the following code to get Alaska and 2022-08-05T00:00:00.000-07:00 from the rows[i].values object:
let myValues = Object.values(rows[i].values);
myValues.forEach((myValue) => console.log(myValue));