for in loop

PHOTO EMBED

Tue Apr 27 2021 11:01:26 GMT+0000 (Coordinated Universal Time)

Saved by @Jemish #javascriptreact

const student = {
    name: 'Monica',
    class: 7,
    age: 12
}

// using for...in
for ( let key in student ) {

    // display the properties
    console.log(`${key} => ${student[key]}`);
}
content_copyCOPY