This site is mobile accessible. Press the "Tap Here" button to use a smaller font-size.
Smartphone icons created by Freepik - Flaticon
This example list the properties of an object.
// Create an object: const person = { firstName: "John", lastName: "Doe", language: "EN" } // Change Property Object.defineProperty(person, "language", {enumerable:false}); // Display Properties document.getElementById("demo").innerHTML = Object.getOwnPropertyNames(person);