1
0
Fork 0
This commit is contained in:
Jason Williams 2019-08-11 12:34:34 -06:00
parent 6528d7204a
commit 6fe77562a9
1 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,24 @@
// const square = function(x) {
// return x * x;
// }
// const square = (x) => {
// return x * x;
// }
// const square = (x) => x * x;
// console.log(square(2));
const event = {
name: 'Birthday Party',
guestList: ['Andrew', 'Jen', 'Mike'],
printGuestList() {
console.log('Guest list for ' + this.name);
this.guestList.forEach((guest) => {
console.log(guest + ' is attending ' + this.name);
})
}
}
event.printGuestList();