Untitled
Anonymous
plain_text
04/04/2024 2:14 AM
376 B
18
Indexable
var person = {
F_name: "alice ",
L_name: "quack",
age: 30,
greet: function(){
console.log("hello my name is: " + this.F_name + this.L_name + " " + "also my age is : " + this.age);
}
};
console.log(person.F_name);
console.log(person.greet());Editor is loading...
Leave a Comment