showPrompt("Enter something<br>...smart :)", function(value) {
alert(value);
});const person = {
firstName: "John",
lastName: "Doe",
age: 50,
eyeColor: "blue"
};const person = {};
// Add Properties
person.firstName = "John";
person.lastName = "Doe";
person.age = 50;
person.eyeColor = "blue";const person = {
firstName: "John",
lastName: "Doe",
age: 50,
eyeColor: "blue"
};
delete person.age;
console.log(person);const person = {
firstName: "John",
lastName: "Doe",
id: 5566,
fullName: function() {
return this.firstName + " " + this.lastName;
}
};
// `fullName` metodini chaqirish va uning natijasini konsolga chiqarish
console.log(person.fullName());