6
メディアの再生中に時間を計算する時間関数を作成しました。先行ゼロは表示されません。どのように先行ゼロを表示させることができますか?先行ゼロで時間を表示するにはどうすればよいですか?
function converttoTime(timeInSeconds)
{
var minutes = Math.round(Math.floor(timeInSeconds/60));
var seconds = Math.round(timeInSeconds - minutes * 60);
//var hours = Math.round(Math.floor(timeInSeconds/3600));
//time = time - hours * 3600;
var time=minutes+':'+seconds;
return time;
}