date Convertir Timestamp en fecha /tiempo / Date [Javascript] Con esta funcion podemos convertir la fecha en timestamp en una fecha normal. function tm(unix_tm) { var dt = new Date(unix_tm*1000); document.writeln(dt.getHours() + '/' + dt.getMinutes() + '/' + dt.getSeconds() + ' -- ' + dt + ' '); } //demo tm(