-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtimeConversio.js
More file actions
78 lines (47 loc) · 1.47 KB
/
timeConversio.js
File metadata and controls
78 lines (47 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
// Given a time in -hour AM / PM format, convert it to military(24 - hour) time.
// Note: - 12:00:00AM on a 12 - hour clock is 00:00:00 on a 24 - hour clock.
// - 12:00:00PM on a 12 - hour clock is 12:00:00 on a 24 - hour clock.
// Example
// Return '12:01:00'.
// Return '00:01:00'.
// Function Description
// Complete the timeConversion function in the editor below.It should return a new string representing the input time in 24 hour format.
// timeConversion has the following parameter(s):
// string s: a time in hour format
// Returns
// string: the time in hour format
// Input Format
// A single string that represents a time in -hour clock format(i.e.: or).
// Constraints
// All input times are valid
// Sample Input 0
// 07:05: 45PM
// Sample Output 0
// 19:05: 45
// Solution
function timeConversion(s) {
// Write your code here
let arr = s.split("")
arr.splice(8, 2)
console.log(arr)
if (s.includes("AM")) {
if (s.includes("12")) {
// console.log(s)
arr.splice(0, 1, "0")
arr.splice(1, 1, "0")
}
return arr.join("")
}
if (s.includes("12")) {
if (s.includes("PM")) {
let arr = s.split("")
arr.splice(8, 2)
}
return arr.join("")
}
let real = (Number(arr[0] + arr[1]) + 12).toString()
let newarr = real.split("")
arr.splice(0, 1, newarr[0])
arr.splice(1, 1, newarr[1])
return arr.join("")
}