Skip to content

Instantly share code, notes, and snippets.

@tag1216
Last active June 8, 2016 01:00
Show Gist options
  • Save tag1216/b3bf40e4a56882a8f2c4a1829e51961c to your computer and use it in GitHub Desktop.
Save tag1216/b3bf40e4a56882a8f2c4a1829e51961c to your computer and use it in GitHub Desktop.
ES2015でリクエストパラメータのパース
var params = new Map(
location.search
.replace(/^\?/, "")
.split('&')
.filter(d => d)
.map(d => d.split('='))
);
params.get("param1")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment