o9

PHOTO EMBED

Fri Jul 09 2021 18:22:47 GMT+0000 (Coordinated Universal Time)

Saved by @buildadev

var student = {
    name: "John Doe",
    marks : 400,
    subject : {
        sub1 : "maths",
        sub2 : "english"
    }
}

console.log("Student studies" + student.subject.sub1 +
            " and " + student.subject.sub2);  
content_copyCOPY