Pages

🖋️Devoir sur table : 5 min / level 🥷

Que valent les affichages 🪛

const add10 = {
  val: 10,
  addTo: function(array) {
    return array.map(function(elt) {
      return this.val + elt;
    });
  }
};
           
🪛console.log(add10.addTo([5,10,15]));

const add10 = {
  val: 10,
  addTo: function(array) {
    return array.map( v => v + this.val )
  }
};
           
🪛console.log(add10.addTo([5,10,15]));