clone this workshop, then work through the quesitons at the bottom, converting the code into es6. make sure the functions continue to output the expected output!
- Replace all function declarations in the file with arrow functions
- replace all vars in the file
- replace all string concatination with template strings
- use default parameter value for description in deepEquals1
- use default value for description in deepEquals1
- deepEquals2 does the same as deepEquals1 but it takes an object, use destructuring to access the properties in the object
- use a default value for description in deepEquals2
- use Set and the spread operator to refactor the uniqueVals function