URLSearchParams
open class URLSearchParams(init: ReadonlyArray<Tuple2<JsString, JsString>> = definedExternally) : ReadonlyMap<JsString, JsString> (source)
The URLSearchParams
interface defines utility methods to work with the query string of a URL.
Properties
Functions
Link copied to clipboard
The get()
method of the URLSearchParams interface returns the first value associated to the given search parameter.
Link copied to clipboard
The getAll()
method of the URLSearchParams interface returns all the values associated with a given search parameter as an array.
Link copied to clipboard
Link copied to clipboard