Get current international time, not a device time using(api) via internet in React js

Viewed 155

I want to get current international time using internet in React Js

const date = new Date();

It basically get the current device time. But i do not want this. When i change my device time, it also changed automatically(date).

Please suggest any good time zoon api for React js?

1 Answers

have you tried moment.js? Its a formatter for dates.

Related