DEV Community

Discussion on: Daily Challenge #305 - Remove Anchors from URLs

Collapse
 
sabbin profile image
Sabin Pandelovitch

js using split method

const remove_url_anchor = url => url.split('#')[0];
Enter fullscreen mode Exit fullscreen mode