JSFiddle - React, Tailwind, and code Playground

by brigand

JavaScript

new Promise((resolve) =>
  navigator.geolocation.getCurrentPosition(x => resolve(x.coords))
).then(({
  latitude,
  longitude
}) => {
  console.log(latitude)
})