=proto int duk_has_var(duk_context *ctx); =stack [ ... varname! ] -> [ ... ] =summary FIXME
The identifier existence check does not have a direct Ecmascript equivalent. The closest equivalent is:
typeof varname !== 'undefined'
However, if the identifier is defined but has the value undefined
,
the above check gives a different result than this API call. Note that the
value of the identifier is not looked up and there can thus be no side effects
from e.g. getter calls.