Simple Javascript Exercises on Objects
Write a JavaScript program to list the properties of a JavaScript object.
Sample object:
var student = {
name : "David Rayy",
sclass : "VI",
rollno : 12
};
Sample Output: name,sclass,rollno
Write a JavaScript program to delete the rollno property ...
nditah.hashnode.dev3 min read