mirror of https://github.com/svaarala/duktape.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
656 B
32 lines
656 B
name: duk_put_prop_string
|
|
|
|
proto: |
|
|
duk_bool_t duk_put_prop_string(duk_context *ctx, duk_idx_t obj_idx, const char *key);
|
|
|
|
stack: |
|
|
[ ... obj! ... val! ] -> [ ... obj! ... ]
|
|
|
|
summary: |
|
|
<p>Like <code><a href="#duk_put_prop">duk_put_prop()</a></code>,
|
|
but the property name is given as a NUL-terminated C string
|
|
<code>key</code>.</p>
|
|
|
|
example: |
|
|
duk_bool_t rc;
|
|
|
|
duk_push_string(ctx, "value");
|
|
rc = duk_put_prop_string(ctx, -3, "key");
|
|
printf("rc=%d\n", (int) rc);
|
|
|
|
tags:
|
|
- property
|
|
- string
|
|
|
|
seealso:
|
|
- duk_put_prop
|
|
- duk_put_prop_index
|
|
- duk_put_prop_lstring
|
|
- duk_put_prop_literal
|
|
- duk_put_prop_heapptr
|
|
|
|
introduced: 1.0.0
|
|
|