=proto void duk_push_uint(duk_context *ctx, duk_uint_t val); =stack [ ... ] -> [ ... val! ] =summary

Convert val to an IEEE double and push it to the stack.

This is a shorthand for calling duk_push_number(ctx, (duk_double_t) val).

=example duk_push_uint(ctx, 123); =tags stack