To get query string values, you can use the URLSearchParams
object.
const params = new URLSearchParams(window.location.search);
console.log(params.get('id')); // Gets the value of the 'id' parameter
Tags: basic, JavaScript, web navigation
URL: https://www.tiktok.com/@jsmentoring/photo/7455462347759471905