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.
26 lines
645 B
26 lines
645 B
name: duk_get_prop_string
|
|
|
|
proto: |
|
|
duk_bool_t duk_get_prop_string(duk_context *ctx, duk_idx_t obj_idx, const char *key);
|
|
|
|
stack: |
|
|
[ ... obj! ... ] -> [ ... obj! ... val! ] (if key exists)
|
|
[ ... obj! ... ] -> [ ... obj! ... undefined! ] (if key doesn't exist)
|
|
|
|
summary: |
|
|
<p>Like <code><a href="#duk_get_prop">duk_get_prop()</a></code>,
|
|
but the property name is given as a NUL-terminated C string
|
|
<code>key</code>.</p>
|
|
|
|
example: |
|
|
duk_get_prop_string(ctx, -3, "propertyName");
|
|
printf("obj.propertyName = %s\n", duk_to_string(ctx, -1));
|
|
duk_pop(ctx);
|
|
|
|
tags:
|
|
- property
|
|
|
|
seealso:
|
|
- duk_get_prop_lstring
|
|
|
|
introduced: 1.0.0
|
|
|