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
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()
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:
Indeed 👍
Any progress on this, eh? It's such a promising little pet project you have here.. just have some quirks to work out ;)
Sorry, something went wrong.
How about using bash arrays instead of name mangling variables..?
got around to try to fix it, in pull #28 .. :p
Fixes kristopolous#19
fb0a13d
Sorry to revive such an old thread; I just have to make this clear to first-time visitors:
The commit above (that Fixes #19) was merged into a branch bash-arrays. So this issue's open because it's still not fixed on the master branch.
bash-arrays
master
kristopolous
No branches or pull requests
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: