将时间格式转换为秒

时间:2019-02-11 05:58:30

标签: javascript time

我有一个时间格式,例如1:50:60(小时:分钟:秒),也可以是00:50:60(分钟:秒)-视情况而定。现在,我要将小时,分钟,秒的值转换为秒。 所以1:50:60将是6660秒。

2 个答案:

答案 0 :(得分:1)

尝试以下代码

In MyFunctions.cpp file the function := void displayReport(string[], int[], int) you didn't declared any variable name 
it should be like 
void displayReport(string typesOfSalsa[], int numJarsSold[], int totalJarsSold)
{
    // copy the code 
}

答案 1 :(得分:0)

尝试一下:

var hms = '01:50:60';   // your input string
var a = hms.split(':'); // split it at the colons

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

console.log(seconds);