You can use encodeURIComponent()
to encode individual components of a URL, such as query parameters.
Example:
const url = 'https://example.com/?name=John Doe';
const encodedURL = encodeURIComponent(url);
console.log(encodedURL); // 'https%3A%2F%2Fexample.com%2F%3Fname%3DJohn%20Doe'
Tags: basic, JavaScript, encoding
URL: https://www.tiktok.com/@jsmentoring/photo/7459156073719680289