This is a mobile optimized page that loads fast, if you want to load the real page, click this text.

Как передать new Date() с сервера на клиент cef | js

Gerych

Участник портала
24 Ноя 2020
79
9
56
Подскажите пожалуйста как передать new Date() с сервера на клиент cef
 

UchihaMadara

Старожил
FrontEnd developer
27 Окт 2020
779
278
141
Передавай unix timestamp
JavaScript:
let unix = Math.floor(Date.now() / 1000)
 

Similar threads