+ 2
why is this happening?
And how can I use it? https://code.sololearn.com/WKCPoWmpL3Vc/?ref=app output: [object Object]
3 Respostas
+ 1
Because you are printing the object.
To check keys in object use Object.keys(rope)
To check values use Object.values(rope)
To access keys and values:
for (let [key, value] of Object.entries(rope)) {
var key1 = key;
var value1 = value;
}
0
...
0
GAMER ......