encodes a URI component.
encodeURIComponent ( uriComponent )
uriComponent - Any type of the following object: number, string, boolean, undefined, null, which before encoing, it gets converted to string.
Characters not escaped: A-Z, a-z, 0-9, -, _, ., !, ~, *, ', (, )
An encoded URI component.
const a = encodeURIComponent(
"https://urlencoder.net/javascript-encodeuricomponent"
)
https%3A%2F%2Furlencoder.net%2Fjavascript-encodeuricomponent