const arrayLike={
a:1,
b:2,
c:"lion"
}
for(const entry of Array.prototype.entries.call(arrayLike)){
console.log(entry);
}
Is there any mistake in the above object declaration?
I am not getting any o\p, Can any one help me in resolving this issue?