Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var student = {
- name : "David Rayy",
- sclass : "VI",
- rollno : 12
- };
- Object.keys(student).forEach(prop=>console.log(prop))
- for(let prop in student)
- {
- if(student.hasOwnProperty(prop))
- console.log(prop)
- }
Advertisement
Add Comment
Please, Sign In to add comment