This site is mobile accessible. Press the "Tap Here" button to use a smaller font-size.
Smartphone icons created by Freepik - Flaticon
Getters and setters allow you to get and set properties via methods.
// Create an object: const person = { firstName: "John", lastName: "Doe", language: "en", get lang() { return this.language.toUpperCase(); } }; // Display data from the object using a getter: document.getElementById("demo").innerHTML = person.lang;