# Object.find ## Function Returns the first value for which the callback result is true. ## Syntax ```bt object.find(callback) ``` ## Parameters | Parameters | Type | Required | Default value | Description | | ------ | ------ | ------ | ------ | ------ | | callback | Fn | No | Empty | The callback signature is fn(value, key, current). | ## Return value | Type | Description | | ------ | ------ | | Any/Empty | Returns the corresponding value when found, otherwise returns Empty. | ## Example ```bt data = {a: 1, b: 2, c: 3} result = data.find(fn(value) { value > 1 }) // Output: 2 print result ``` ## Notes - find traverses objects in order of insertion. - The traversal stops as soon as the first matching value is found.