Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
July 25, 2022 06:14 pm GMT

Url in Javascript

In javascript you can easily create a new URL using the below code

const url = new URL('https://github.com/DhanushNehru')url.searchParams.set('tab','repositories')

The url.searchParams.set is used to set param values to the url

console.log(url.toString())// Output: https://github.com/DhanushNehru?tab=repositories

This URL API is safely supported in all modern browsers.

Hope you learned something new. Thank you for reading

For more insights connect with me via Twitter & Github


Original Link: https://dev.to/dhanushnehru/url-in-javascript-550d

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To