URL Enocde en JavaScript
const urlEncoded = (string) => {
const newText = encodeURI(string);
return newText
};
mrmalik610
const urlEncoded = (string) => {
const newText = encodeURI(string);
return newText
};