Your design company has primarily been working with CSS transformations to build webpages. After some discussion, a decision is made
to start using JavaScript to perform some of the calculations dynamically. Some of your teammates are less experienced with JavaScript,
so you decide to use a function closure to create reusable transformation for {x, y}
coordinate pairs.
Create a function whose arguments are used as a closure in a returned function.
g(f(x))
Create a function which memoizes a function.