Files
30-seconds-of-code/snippets/getBaseURL.md
Isabelle Viktoria Maciohsek 8bf67754ce Make expertise a field
2022-03-01 20:21:45 +02:00

517 B

title, tags, expertise, firstSeen, lastUpdated
title tags expertise firstSeen lastUpdated
Get base URL string,browser,regexp beginner 2020-05-03T12:20:54+03:00 2021-01-03T20:32:13+02:00

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'