Lines Matching refs:Output
163 console.log(params.getAll('fod').toString()) // Output ["1","3"].
371 console.log(searchParamsObject.toString()); // Display the sorted query string // Output a=9&b=4&c=…
396 for (let key of keys) { // Output key-value pairs
479 console.log(params.toString()); // Output 'fod=1&bard=2&fod=3'
548 let a = new url.URL("/", mm); // Output 'https://username:password@host:8080/';
549 let b = new url.URL(mm); // Output 'https://username:password@host:8080/';
550 new url.URL('path/path1', b); // Output 'https://username:password@host:8080/path/path1';
551 let c = new url.URL('/path/path1', b); // Output 'https://username:password@host:8080/path/path1';
552 new url.URL('/path/path1', c); // Output 'https://username:password@host:8080/path/path1';
553 new url.URL('/path/path1', a); // Output 'https://username:password@host:8080/path/path1';
554 new url.URL('/path/path1', "https://www.exampleUrl/fr-FR/toot"); // Output https://www.exampleUrl/p…
557 new url.URL('https://www.example.com', ); // Output https://www.example.com/
558 new url.URL('https://www.example.com', b); // Output https://www.example.com/
606 let result = urlObject.toString(); // Output 'https://username:password@host:8080/test/test1/test3'
608 let url1 = url.URL.parseURL('path2/path3', 'https://www.huawei.com/test/test1'); // Output 'https:/…
610 let url2 = url.URL.parseURL('/path1/path2', urlObject); // Output 'https://username:password@host:8…
611 url.URL.parseURL('/path/path1', "https://www.exampleUrl/fr-FR/toot"); // Output 'https://www.exampl…
614 url.URL.parseURL('https://www.example.com', ); // Output 'https://www.example.com/'
615 url.URL.parseURL('https://www.example.com', urlObject); // Output 'https://www.example.com/'
638 let result = urlObject.toString(); // Output 'https://username:password@host:8080/directory/file?qu…
778 console.log(params.getAll('fod').toString()) // Output ["1","3"].
962 console.log(searchParamsObject.toString()); // Display the sorted query string // Output a=9&b=4&c=…
989 for (let key of keys) { // Output key-value pairs
1077 console.log(params.toString()); // Output 'fod=1&bard=2&fod=3'