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

Categories

0 votes
539 views
in Technique[技术] by (71.8m points)

javascript - Convert hours into minutes

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

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

1 Answer

0 votes
by (71.8m points)

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);

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

56.8k users

...