Loop through array from excel row

Hi,

how do I loop through an array from excel row?

the array looks like this:

{“A”:“0710002”,“B”:57144937913,“C”:57144937890,“D”:57144937937}

I know I can get an element with: - excel_row_content[“A”] -

But how can use that arry in a loop, since I cant calculate column names? Or is it possible to do so?

Thanks
Benjamin

Hi, @bnp !

You can also loop through the elements in the object. To do this, you must first extract the keys of this object using the Object.keys method. It’s possible to build such an algorithm:

If you have any questions, please feel free to ask!