Course · Section 14: Object-Oriented Programming (OOP) With JavaScript · Lecture 229: Object.create
Using `Object.create` with a prototype that has a `describe()` method, implement `describeValue(value)` returning the string `value=` followed by the value.
+ 1 hidden test run on Submit.
Object.create makes a new object whose prototype is the given object, inheriting describe.
Run your code to see results.