I'm trying to separate some values that come from an AJAX request.
They look like this:
Object { name: "fsdfsd", details: "sdfsdf", password: "sdfsdgds" }
And I'd basically need them separated each value in its variable. How can I do that?
I've searched around but can't find a good answer. I'm used to PHP syntax like $this->output and I just moved to using JS more than once in a month so I'm still trying to accomodate :)
Thank you!