Files
30-seconds-of-code/snippets/getBaseURL.md
Angelos Chalaris d5269b2353 Update getBaseURL.md
2021-01-03 20:32:13 +02:00

428 B

title, tags
title tags
getBaseURL string,browser,regexp,beginner

Gets the current URL without any parameters or fragment identifiers.

  • Use String.prototype.replace() with an appropriate regular expression to remove everything after either '?' or '#', if found.
const getBaseURL = url => url.replace(/[?#].*$/, '');
getBaseURL('http://url.com/page?name=Adam&surname=Smith');
// 'http://url.com/page'