0
KPKonrad Psiuk
The for loop runs through each property in the object, logging each name to the console.
0 Comments
for(let propertyName in <object goes here>){ console.log(propertyName); };