Skip to content

Instantly share code, notes, and snippets.

@codebubb
Created September 2, 2019 12:40
Show Gist options
  • Select an option

  • Save codebubb/391ac187dc7a9c20b95b8088b3de2168 to your computer and use it in GitHub Desktop.

Select an option

Save codebubb/391ac187dc7a9c20b95b8088b3de2168 to your computer and use it in GitHub Desktop.
How to get IP address with JavasScript
fetch('https://api.ipify.org/?format=json')
.then(results => results.json())
.then(console.log) // e.g. { ip: "113.114.194.164" }
.catch(console.error);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment