Horje
for each way to print object's values or keys only. Code Example
for each way to print object's values or keys only.
const obj = {
  name: 'Jean-Luc Picard',
  rank: 'Captain'
};

// Prints "Jean-Luc Picard" followed by "Captain"
Object.values(obj).forEach(val => {
  console.log(val);
});




Javascript

Related
cache axios response Code Example cache axios response Code Example
how to install node js dependencies from package.json Code Example how to install node js dependencies from package.json Code Example
javascript how to get away with murder Code Example javascript how to get away with murder Code Example
js check if tab switched Code Example js check if tab switched Code Example
total cost example in javascript with function Code Example total cost example in javascript with function Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7