Objects Exercises
// N01
var student = {
name: "David Rayy",
sclass: "VI",
rollno: 12
};
// Function to list the properties of an object
function listObjectProperties(obj) {
for (var prop in obj) {
if (obj.hasOwnProperty(prop)) {
c...
supercoder11.hashnode.dev5 min read