Javascript list object

JavaScript: List the properties of a JavaScript object

Last update on February 26 2020 08:09:06 [UTC/GMT +8 hours]

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: -

HTML Code:

JavaScript program to list the properties of a JavaScript object.

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"}]];

Sample Output:

["red","green","white"]

Flowchart:


Live Demo:

See the Pen javascript-object-exercise-1 by w3resource [@w3resource] on CodePen.


Contribute your code and comments 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?

Easy Medium Hard

Test your Programming skills with w3resource's quiz.



JavaScript: Tips of the Day

Merge/flatten your arrays in arrays

There's a nice method for Array called Array.flat, as an argument it needs depth you need to flat [default: 1]. But what if you don't know the depth, you need to flatten it all. We just put Infinity as the argument. Also there's a nice flatMap method.

const arrays = [[10], 50, [100, [2000, 3000, [40000]]]]; arrays.flat[Infinity]; // [ 10, 50, 100, 2000, 3000, 40000 ]

Ref: //bit.ly/3o5iTBb

  • New Content published on w3resource:
  • Scala Programming Exercises, Practice, Solution
  • Python Itertools exercises
  • Python Numpy exercises
  • Python GeoPy Package exercises
  • Python Pandas exercises
  • Python nltk exercises
  • Python BeautifulSoup exercises
  • Form Template
  • Composer - PHP Package Manager
  • PHPUnit - PHP Testing
  • Laravel - PHP Framework
  • Angular - JavaScript Framework
  • Vue - JavaScript Framework
  • Jest - JavaScript Testing Framework

Video liên quan

Chủ Đề