method URLSearchParams.keysURLSearchParams.keys(): IterableIterator<string>DeprecatedReturns an iterator allowing to go through all keys contained in this object. const params = new URLSearchParams([["a", "b"], ["c", "d"]]); for (const key of params.keys()) { console.log(key); } Return TypeIterableIterator<string>