Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I want to convert the hours into minutes.

Example: If hour is 2:18, then I want the output as 138 minutes.

<script>
m = diff % 60;
h = (diff - m) / 60;

mins = h.toString() + ":" + (m < 10 ? "0" : "") + m.toString();
alert(mins)
</script>
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
542 views
Welcome To Ask or Share your Answers For Others

1 Answer

You can easily convert this into javascript. Following code might help you

var hms = '2:18';   // your input string
var a = hms.split(':'); // split it at the colons

// minutes are worth 60 seconds. Hours are worth 60 minutes.
var minutes= (+a[0]) * 60  + (+a[1])  ; 

console.log(minutes);

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...