Below I created an object called "items" which has some data and when I am doing console.log() it is only printing Name, Place, and Developer values.
const items = {
"Name": "Manoj Pillamari",
"Age": 24,
"Place": undefined,
"Developer": true
}
console.log(items["Name", "Age", "Place", "Developer"])
Output:-
Manoj Pillamari
undefined
true