How to get values of an object with Javascriptjavascript
00:00:00
Press Esc to exit this exercise.
const person = {
key: "value",
first_name: "John",
last_name: "Doe"
};
const values = Object.values(person);
console.log(values);
Press Esc to exit this exercise.
const person = {
key: "value",
first_name: "John",
last_name: "Doe"
};
const values = Object.values(person);
console.log(values);