Получить IP -адрес посетителя с помощью JavaScript

fetch('https://api.ipify.org').then(response => response.text()).then(data => {
  const userIP = data;
  console.log(userIP);
});
Adventurous Ant