| layout | language | permalink | command | io | related_commands | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
api-command |
JavaScript |
api/javascript/object/ |
object |
|
|
{% apibody %} r.object([key, value,]...) → object {% endapibody %}
Creates an object from a list of key-value pairs, where the keys must
be strings. r.object(A, B, C, D) is equivalent to
r.expr([[A, B], [C, D]]).coerceTo('OBJECT').
Example: Create a simple object.
r.object('id', 5, 'data', ['foo', 'bar']).run(conn, callback)Result:
{data: ["foo", "bar"], id: 5}