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: |
Like duk_get_prop()
,
but the property name is given as a NUL-terminated C string
key
.