js cheeck dfor valid url code example
Example 1: javascript determine if string is valid url
function isValidHttpUrl(string) {
let url;
try {
url = new URL(string);
} catch (_) {
return false;
}
return url.protocol === "http:" || url.protocol === "https:";
}
Example 2: validate url javascript
validateurl