Untitled

 avatar
unknown
plain_text
7 days ago
141 B
4
Indexable
let duck = {
  name: "Aflac",
  numLegs: 2,
  sayName: function() {return "The name of this duck is " + duck.name + ".";}
};
duck.sayName();
Leave a Comment