admin管理员组文章数量:1342522
I want to convert the format example '00: 30: 00' on seconds. This is my way. Is there a way to add these values in the 'template string'?
expected effect:
convert1000('00:30:00') --> 1800
convert1000('00:00:10') --> 10
convert1000('00:08:10') --> 490
convert1000('01:01:10') --> 3670
const convert1000 = (time) => {
const [hour, minute, sec] = time.split(':');
if (hour !== "00") {
return `${(hour* 3600)} + ${(minute * 60)} + ${(sec)}`;
}
if (minute !== "00") {
return `${minute * 60} + ${sec} `;
}
return `${sec} `;
}
I want to convert the format example '00: 30: 00' on seconds. This is my way. Is there a way to add these values in the 'template string'?
expected effect:
convert1000('00:30:00') --> 1800
convert1000('00:00:10') --> 10
convert1000('00:08:10') --> 490
convert1000('01:01:10') --> 3670
const convert1000 = (time) => {
const [hour, minute, sec] = time.split(':');
if (hour !== "00") {
return `${(hour* 3600)} + ${(minute * 60)} + ${(sec)}`;
}
if (minute !== "00") {
return `${minute * 60} + ${sec} `;
}
return `${sec} `;
}
Share
Improve this question
edited Jun 26, 2019 at 13:21
Umbro
asked Jun 26, 2019 at 12:55
UmbroUmbro
2,21412 gold badges46 silver badges107 bronze badges
6
- 2 Why do you want a template string here? Seems rather odd. – epascarello Commented Jun 26, 2019 at 12:58
- Possible duplicate of Convert HH:MM:SS string to seconds only in javascript – Feras Al Sous Commented Jun 26, 2019 at 12:58
- Use only one ${} but still seems odd. – epascarello Commented Jun 26, 2019 at 12:59
- Like this maybe? jsfiddle/khrismuc/rbzhtep9 – user5734311 Commented Jun 26, 2019 at 12:59
-
You want a
sscanf
from good old C? Alas, I don't believe vanilla JS has it. – mbojko Commented Jun 26, 2019 at 13:01
6 Answers
Reset to default 6Use asSeconds
from momentjs duration objects
moment.duration('00:30:00').asSeconds();
You could split and reduce the values by multiplying the former value by 60
and then add the value.
const convert1000 = time => time.split(':').reduce((s, t) => s * 60 + +t, 0);
console.log(convert1000('00:30:00')); // 1800
console.log(convert1000('00:00:10')); // 10
console.log(convert1000('00:08:10')); // 58 is wrong, because 8 minutes is 480 plus 10 sec
console.log(convert1000('01:01:10')); // 3670
You need to do it like this
const convert1000 = (time) => {
const [h,m,s] = time.split(':');
let seconds = (h*3600) + (m * 60) + parseInt(s);
return seconds;
}
alert(convert1000("00: 30: 00"))
See the fiddle here https://jsfiddle/q4zvsowe/
You need to convert the string numbers into integers first. This should work the way you intend:
let convert1000 = (timeString) => {
let [hour, minute, second] = timeString.split(':').map(Number);
return `${(hour* 3600) + (minute * 60) + (second)}`;
}
Note that this returns a string; if you want it to be a number, just remove the templating.
You need to put the +
inside the braces to make them sum numbers.
You should put it inside one ${}
So your code would be like below:
const convert2000 = (time) => {
const [hour, minute, sec] = time.split(':');
if (hour !== "00") {
return `${hour* 3600 + minute * 60 + sec}`;
}
if (minute !== "00") {
return `${minute * 60 + sec} `;
}
return `${sec}`;
}
Try this:
const convert1000 = (time) => {
const [hour, minute, sec] = time.split(':');
return hour * 3600 + minute * 60 + sec * 1;
};
console.log(convert1000('00:30:00'));
本文标签: javascriptHow can I convert 3900 30 00 39 format to secondsStack Overflow
版权声明:本文标题:javascript - How can I convert '00: 30: 00 ' format to seconds? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743702596a2524573.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论