Course · Section 9: Data Structures, Modern Operators and Strings · Lecture 111: The Spread Operator (...)
Implement two helpers used when rendering a component: - `mergeProps(defaults, props)` merges props over defaults (props win). - `classNames(map)` returns a space-separated string of the keys whose values are truthy.
+ 1 hidden test run on Submit.
These two helpers are the everyday glue of component rendering: resolving props with defaults and building conditional class strings.
Run your code to see results.