Billing Overview
Pay-as-You-Go (postpaid)
Purchasing Channels
Payment Overdue
Refund Instructions
append(key: string, value: string | number): void
Parameter | Type | Description |
key | string | Key |
value | string or number | Value |
Type | Description |
void | No data returned. |
import url from 'pts/url';export default function() {const params = new url.URLSearchParams('key1=value1');params.append('key2', 'value2');console.log(params.toString()); // key1=value1&key2=value2}
Was this page helpful?
You can also Contact sales or Submit a Ticket for help.
Help us improve! Rate your documentation experience in 5 mins.
Feedback