JavaScript: List the properties of a JavaScript object
JavaScript Object: Exercise-1 with Solution
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
Sample Solution:
JavaScript Code:
function _keys(obj)
{
if (!isObject(obj)) return [];
if (Object.keys) return Object.keys(obj);
var keys = [];
for (var key in obj) if (_.has(obj, key)) keys.push(key);
return keys;
}
function isObject(obj)
{
var type = typeof obj;
return type === 'function' || type === 'object' && !!obj;
}
console.log(_keys({red: "#FF0000", green: "#00FF00", white: "#FFFFFF"}));
Output:
["red","green","white"]
Flowchart:
Live Demo:
See the Pen javascript-object-exercise-1 by w3resource (@w3resource) on CodePen.
Improve this sample solution and post your code through Disqus.
Previous: javascript Object Eexercises.
Next: Write a JavaScript program to delete the rollno property from the following object. Also print the object before or after deleting the property.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://w3resource.com/javascript-exercises/javascript-object-exercise-1.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics