Create an Object

Create an object from a given query string

Description

Create an object using a query string from the Input.

Properties

Object Values

The query string that specified the key and values of the object to be created.

// Some code
hello=world&test=me

// creates and object
{
  "hello" : "world",
  "test" : "me"
}

Assign To

The variable to assign this created object to

Return

Returns the created object.

Last updated