In this lesson, we'll use Ramda's toPairs function, along with map, join, concatand compose to create a reusable function that will convert an object to a querystring. const R = require('ramda'); const {map, join, concat, compose, toPairs} = R; const…