Skip to main content
Version: 3.14.1

URLSearchParams.entries()

The entries() method of the URLSearchParams interface returns an iterator allowing iteration through all key/value pairs contained in this object. The iterator returns key/value pairs in the same order as they appear in the query string. The key and value of each pair are string objects.

Syntax

entries()

Parameters

None.

Return value

Returns an iterator.