for ...in loop Can only access 'key' of an object Repeat all iterable properties of an object var obj = { "a": 1, "b": 2, "c": 3 } for (var prop in obj) { console.log(`${prop}: ${obj[prop]}`) // a: 1 // b:...
jaeyeonjung.hashnode.dev1 min readNo responses yet.