Javasctipt Unix TimeStamp desde la fecha
Math.round(new Date().getTime() / 1000).toString()
Busy Bee
Math.round(new Date().getTime() / 1000).toString()
var s = new Date(1504095567183).toLocaleDateString("en-US")
// expected output "8/30/2017"
console.log(s);
Math.floor(new Date() / 1000) // in seconds
function getUnixTime() {
return (Date.now() / 1000) | 0;
}
Math.floor(+new Date() / 1000)
Math.floor(new Date() / 1000)