Here's the object that I am working with, which contains arrays: https://i.sstatic.net/WPAF4.png
To extract its key values for further use, I'm trying to iterate over it using for in
loop like this:
for (let key in gameObj){
console.log(key);
}
However, the loop doesn't seem to be entering at all to retrieve the arrays.
What could I possibly be missing?