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']
For further actions, you may consider blocking this person and/or reporting abuse
    
Top comments (0)