How to loop Object.values array?
Advertisements How to get single values from object.values array? I am getting this obj in console.log() // {"item": Array(3)} {"item": (3) [’21’, ’14’, ’12’]} and I want to get single number from object.values // 21 ,14, 12 I am trying this let j = Object.values(data) console.log(j) // [Array(3)] >Solution : Since I am not sure… Read More How to loop Object.values array?