Working with _.partialRight() in Lodash

Medium
0.0% Acceptance

In this lab, you will be working with the _.partialRight() function provided by the Lodash library. This function allows you to partially apply arguments to a function from right to left.

Your task is to create a sum function, which takes three arguments, and uses _.partialRight() to pre-apply one argument for the sum.

Use ESM syntax to import and export your variables and functions. You have to export the function as the default export.

Complete the following challenges: