🔹 بهروزرسانی Query String در URL `javascript
function modifyQueryString(querystrings) { if (history.pushState) { let newurl = window.location.protocol + "//" + window.location.host + window.location.pathname + '?' + querystrings; window.history.pushState({ path: newurl }, '', newurl); } }