Lines Matching refs:pairs
98 Deletes key-value pairs of the specified key.
108 | name | string | Yes| Key of the key-value pairs to delete.|
189 for (let pair of arrayValue) { // Show keyName/valueName pairs
199 Traverses the key-value pairs in the **URLSearchParams** instance by using a callback.
209 | callbackFn | function | Yes| Callback invoked to traverse the key-value pairs in the **URLSearchP…
326 …-value pairs matching the specified key exist, the value of the first key-value pair will be set t…
360 …pairs contained in this object based on the Unicode code points of the keys and returns undefined.…
370 searchParamsObject.sort(); // Sort the key/value pairs
379 Obtains an ES6 iterator that contains the keys of all the key-value pairs.
389 | IterableIterator<string> | ES6 iterator that contains the keys of all the key-value pairs.|
396 for (let key of keys) { // Output key-value pairs
406 Obtains an ES6 iterator that contains the values of all the key-value pairs.
416 | IterableIterator<string> | ES6 iterator that contains the values of all the key-value pairs…
450 let pairs = Array.from(iter);
451 for (let pair of pairs) {
728 Deletes key-value pairs of the specified key.
740 | name | string | Yes| Key of the key-value pairs to delete.|
754 Obtains all the key-value pairs based on the specified key.
772 | string[] | All key-value pairs matching the specified key.|
806 let pairs = Array.from(iter);
807 for (let pair of pairs) { // Show keyName/valueName pairs
817 Traverses the key-value pairs in the **URLSearchParams** instance by using a callback.
829 | callbackFn | function | Yes| Callback invoked to traverse the key-value pairs in the **URLSearchP…
924 …-value pairs matching the specified key exist, the value of the first key-value pair will be set t…
952 …pairs contained in this object based on the Unicode code points of the keys and returns undefined.…
964 searchParamsObject.sort(); // Sort the key/value pairs
973 Obtains an ES6 iterator that contains the keys of all the key-value pairs.
985 | IterableIterator<string> | ES6 iterator that contains the keys of all the key-value pairs.|
992 for (let key of keys) { // Output key-value pairs
1002 Obtains an ES6 iterator that contains the values of all the key-value pairs.
1014 | IterableIterator<string> | ES6 iterator that contains the values of all the key-value pairs…
1050 let pairs = Array.from(iter);
1051 for (let pair of pairs) {