Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created June 25, 2020 05:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/471cdceaa049c1e963ffea7450ddef30 to your computer and use it in GitHub Desktop.
Save parzibyte/471cdceaa049c1e963ffea7450ddef30 to your computer and use it in GitHub Desktop.
const URL_API = "https://api.ipify.org/?format=json";
const respuestaRaw = await fetch(URL_API);
const respuesta = await respuestaRaw.json();
const ip = respuesta.ip;
console.log("Tu IP es: ");
console.log(ip);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment