You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

2.0 KiB

Curry Entries

Instructions

This exercise consists in creating curry functions to apply in the objects entries. You will have to create the following curry functions:

  • defaultCurry that will curry two objects in witch the second object must be the default object and returns a new object with the modifications applied by the first object
  • mapCurry that replicate the function .map
  • reduceCurry that replicate the function .reduce
  • filterCurry that replicate the function .filter

You will also have to create for each curry function the following:

  • reduceScore that will return the total value of the scores of the persons who use the force
  • filterForce that will return the force users with shootingScores equal or higher than 80
  • mapAverage that will return a new object with the propriety averageScore that is the averages of the scores for each person

Notions

Code provided

all code provided will be added to your solution and doesn't need to be submited.

// prettier-ignore
const personnel = {
  lukeSkywalker: { id: 5,  pilotingScore: 98, shootingScore: 56, isForceUser: true  },
  sabineWren:    { id: 82, pilotingScore: 73, shootingScore: 99, isForceUser: false },
  zebOrellios:   { id: 22, pilotingScore: 20, shootingScore: 59, isForceUser: false },
  ezraBridger:   { id: 15, pilotingScore: 43, shootingScore: 67, isForceUser: true  },
  calebDume:     { id: 11, pilotingScore: 71, shootingScore: 85, isForceUser: true  },
}