There is an Object Array. How to convert it to Json Array? enter image description here

ie, the output should be

ROW_DATA = [{ "autor": "", "autorznak": "A22", .... }, { "autor": "", "autorznak": "A22", .... }] 
  • ROW_DATA = obj.books - Grundy
  • There is an Object Array - this is not an Object Array , this is a normal object - Grundy
  • Json Array - what does it mean? ordinary array, or its string representation? - Grundy
  • @Grundy array as a string. as shown in the text - Rajab
  • ROW_DATA = JSON.stringify(obj.books); - Igor

0