We're a place where coders share, stay up-to-date and grow their careers.
Hey Alex!
There was a bug when I was importing my code samples, here's what the line should look like:
var pairs = str.split("&")
I've updated the article above to address the bug :).
And what it's doing is splitting up the params from the query string, so it turns something like this:
"foo=1&bar=2"
into an array of strings like so:
["foo=1","bar=2"]
Thanks for your answer!
Hey Alex!
There was a bug when I was importing my code samples, here's what the line should look like:
var pairs = str.split("&")
I've updated the article above to address the bug :).
And what it's doing is splitting up the params from the query string, so it turns something like this:
"foo=1&bar=2"
into an array of strings like so:
["foo=1","bar=2"]
Thanks for your answer!