Exercise 2 - contains Write a function that searches for a value in a nested object. It returns true if the object contains that value. Objects are compared by reference. Examples: contains({ foo: "foo" }, "bar") // false contains({ foo: { bar: "bar" } }, "bar") // true