We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
>> [].hasOwnProperty('length') false >> [1,2,3].hasOwnProperty('length') true
The text was updated successfully, but these errors were encountered:
here some more tests
>> [,].hasOwnProperty('length') false >> [,2].hasOwnProperty('length') false >> (new Array(10)).hasOwnProperty('length') false >> (new Array('10')).hasOwnProperty('length') true >> (new Array()).hasOwnProperty('length') false >> (Array.of()).hasOwnProperty('length') false >> (Array.of(1)).hasOwnProperty('length') true
also related
>> 'asdf'.hasOwnProperty('length') false >> (new String('asdf')).hasOwnProperty('length') false
Sorry, something went wrong.
Hi @drsm,
Please, take a look at the following patch: https://gist.github.com/xeioex/f691a64d48ddb7db0fda16ceceab5670
Hi @xeioex!
the patch fixes the original issue.
8c954b5
xeioex
No branches or pull requests
The text was updated successfully, but these errors were encountered: