=proto int duk_has_prop_string(duk_context *ctx, int obj_index, const char *key); =stack [ ... obj! ... ] -> [ ... obj! ... ] =summary

Like duk_has_prop(), but the property name is given as a NUL-terminated C string key.

=example if (duk_has_prop(ctx, -3, "myProperty")) { printf("obj has 'myProperty'\n"); } else { printf("obj does not have 'myProperty'\n"); } =tags property stack