encodeURI() encodeURIComponent()Example use:
const myfile = 'c:\\windows\\hello.txt'; const myurl = 'http://host.com/?file=' + encodeURIComponent(myfile);
encodeURI() encodeURIComponent()Example use:
const myfile = 'c:\\windows\\hello.txt'; const myurl = 'http://host.com/?file=' + encodeURIComponent(myfile);