-
Notifications
You must be signed in to change notification settings - Fork 55
New issue
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
length is unintuitively recursive #19
Comments
Indeed 👍 Any progress on this, eh? |
How about using bash arrays instead of name mangling variables..? |
got around to try to fix it, in pull #28 .. :p |
Sorry to revive such an old thread; The commit above (that Fixes #19) was merged into a branch |
In addressing #17 I ran into this
database = [
{
"artist": "Ludwig Van Beethoven",
"title": "Moonlight Sonata"
},
{
"artist": "Johann Pachelbel",
"title": "Canon in D Major"
},
{
"artist": "Johann Sebastian Bach",
"title": "Air on a G String"
}
]
``
echo
database.length()
which emitted 6. In the JS world we'd probably think this to be 3.
The text was updated successfully, but these errors were encountered: