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.
29 lines
820 B
29 lines
820 B
name: duk_del_prop_index
|
|
|
|
proto: |
|
|
duk_bool_t duk_del_prop_index(duk_context *ctx, duk_idx_t obj_index, duk_uarridx_t arr_index);
|
|
|
|
stack: |
|
|
[ ... obj! ... ] -> [ ... obj! ... ]
|
|
|
|
summary: |
|
|
<p>Like <code><a href="#duk_del_prop">duk_del_prop()</a></code>,
|
|
but the property name is given as an unsigned integer
|
|
<code>arr_index</code>. This is especially useful for deleting
|
|
array elements (but is not limited to that).</p>
|
|
|
|
<p>Conceptually the number is coerced to a string for the
|
|
property deletion, e.g. <code>123</code> would be equivalent to a property
|
|
name <code>"123"</code>. Duktape avoids an explicit coercion whenever
|
|
possible.</p>
|
|
|
|
example: |
|
|
duk_bool_t rc;
|
|
|
|
rc = duk_del_prop_index(ctx, -3, 123);
|
|
printf("delete obj[123] -> rc=%d\n", (int) rc);
|
|
|
|
tags:
|
|
- property
|
|
|
|
introduced: 1.0.0
|
|
|