o15

PHOTO EMBED

Fri Jul 09 2021 18:32:21 GMT+0000 (Coordinated Universal Time)

Saved by @buildadev

var student = {
    name: "John Doe",
    marks : 400
}

var s1 = student;
s1.marks = 300;
console.log("Marks of the student is " + student.marks);
content_copyCOPY