Skip to content

Instantly share code, notes, and snippets.

@ajayvarghese
Last active January 14, 2019 06:05
Show Gist options
  • Save ajayvarghese/f7f501a4ed9e9118746580def8743f8a to your computer and use it in GitHub Desktop.
Save ajayvarghese/f7f501a4ed9e9118746580def8743f8a to your computer and use it in GitHub Desktop.
var url = new URL('https://sl.se')
var params = {lat:35.696233, long:139.570431} // or:
var params = [['lat', '35.696233'], ['long', '139.570431']]
url.search = new URLSearchParams(params)
fetch(url)
// NodeJS
const { URL, URLSearchParams } = require('url');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment