DEV Community

Discussion on: Personalize Your Page Based on Params

Collapse
 
gsto profile image
Glenn Stovall

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"]

Collapse
 
agredalex profile image
Alex Ágreda

Thanks for your answer!