“Umwandeln Sie Millisekunden zum Zeitpunkt JavaScript” Code-Antworten

Millisekunden in Sekunden JS konvertieren

function millisToMinutesAndSeconds(millis) {
  var minutes = Math.floor(millis / 60000);
  var seconds = ((millis % 60000) / 1000).toFixed(0);
  return minutes + ":" + (seconds < 10 ? '0' : '') + seconds;
}

millisToMinutesAndSeconds(298999); // "4:59"
millisToMinutesAndSeconds(60999);  // "1:01"
Clever Cardinal

JS lesen Datum von Millisekunden

const miliseconds = 1604395966369;

const date = new Date(miliseconds);
Cold Shower Coding

Umwandeln Sie Millisekunden in Minuten und Sekunden JavaScript

const millisToMinutesAndSeconds = (millis) => {
    var minutes = Math.floor(millis / 60000);
    var seconds = ((millis % 60000) / 1000).toFixed(0);
	//ES6 interpolated literals/template literals 
  	//If seconds is less than 10 put a zero in front.
    return `${minutes}:${(seconds < 10 ? "0" : "")}${seconds}`;
}
    
deadlymuffin

Konvertieren Sie das Datum in Millisekunden in JavaScript

var date = new Date("11/21/1987 16:00:00"); // some mock date
var milliseconds = date.getTime(); 
// This will return you the number of milliseconds
// elapsed from January 1, 1970 
// if your date is less than that date, the value will be negative

console.log(milliseconds);
TNmiko

Umwandeln Sie Millisekunden zum Zeitpunkt JavaScript

function msToTime(s) {

  // Pad to 2 or 3 digits, default is 2
  function pad(n, z) {
    z = z || 2;
    return ('00' + n).slice(-z);
  }

  var ms = s % 1000;
  s = (s - ms) / 1000;
  var secs = s % 60;
  s = (s - secs) / 60;
  var mins = s % 60;
  var hrs = (s - mins) / 60;

  return pad(hrs) + ':' + pad(mins) + ':' + pad(secs) + '.' + pad(ms, 3);
}

console.log(msToTime(55018))
Glorious Gorilla

Ähnliche Antworten wie “Umwandeln Sie Millisekunden zum Zeitpunkt JavaScript”

Fragen ähnlich wie “Umwandeln Sie Millisekunden zum Zeitpunkt JavaScript”

Weitere verwandte Antworten zu “Umwandeln Sie Millisekunden zum Zeitpunkt JavaScript” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen