Khoerodin Developer, writer, and maker |

Developer, writer, and maker

Parsing URL parameter pada JavaScript

Berikut cara mudah mengambil URL parameter jika menggunakan JavaScript:

// Misal dari "?id=1234&others=hi"

let urlParams = new URLSearchParams(window.location.search)

console.log(urlParams.has('id')) // true
console.log(urlParams.get('others')) // "hi"
console.log(urlParams.getAll('others')) // ["hi"]
console.log(urlParams.toString()); // "?id=1234&others=hi"
console.log(urlParams.append('active', '1')); // "?id=1234&others=hi&active=1"

Oh ya, ini tidak bisa berjalan jika menggunakan IE.