rest operator - args functions p1

PHOTO EMBED

Thu Jun 20 2024 05:58:52 GMT+0000 (Coordinated Universal Time)

Saved by @davidmchale #functions #...args

const testObj = {
  name: 'David',
  movie: 'fight club',
  active: true,
};

const testObj2 = {
  name: 'kevin',
  movie: 'Bladerunner',
  active: false,
};



function getData(...args) {
  args.forEach(({name, movie}) => {
    console.log({name, movie});
  });
}



content_copyCOPY