DEV Community

Discussion on: Hooks Reducer Links

Collapse
 
chenge profile image
chenge

Presentation, where?

var pets = {
  names: ['Baron', 'Chief', 'Axel'],
  owner: 'Jason',
  description: function(){
    return this.names.map((pet)=>{
      return `${this.owner} knows an awesome dog named ${pet}.`
    });
  }
};

pets.description()

Code in the 1st is fun.

Collapse
 
httpjunkie profile image
Eric Bishard

I will link to the presentation!