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.
27 lines
773 B
27 lines
773 B
=proto
|
|
int duk_has_prop_index(duk_context *ctx, int obj_index, unsigned int arr_index);
|
|
|
|
=stack
|
|
[ ... obj! ... ] -> [ ... obj! ... ]
|
|
|
|
=summary
|
|
<p>Like <code><a href="#duk_has_prop">duk_has_prop()</a></code>,
|
|
but the property name is given as an unsigned integer
|
|
<code>arr_index</code>. This is especially useful for checking
|
|
existence of array elements (but is not limited to that).</p>
|
|
|
|
<p>Conceptually the number is coerced to a string for property
|
|
existence check, e.g. <code>123</code> would be equivalent to a property
|
|
name <code>"123"</code>. Duktape avoids an explicit coercion whenever
|
|
possible.</p>
|
|
|
|
=example
|
|
if (duk_has_prop_index(ctx, -3, 123)) {
|
|
printf("obj has index 123\n");
|
|
} else {
|
|
printf("obj does not have index 123\n");
|
|
}
|
|
|
|
=tags
|
|
property
|
|
stack
|
|
|