We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2322d4d commit 44e08deCopy full SHA for 44e08de
Sprint-2/5-stretch-extend/format-time.js
@@ -24,6 +24,8 @@ console.assert(
24
`current output: ${currentOutput2}, target output: ${targetOutput2}`
25
);
26
27
+/* test */
28
+
29
const currentOutput3 = formatAs12HourClock("5:00");
30
const targetOutput3 = "5:00 am";
31
console.assert(
time.js
@@ -0,0 +1,8 @@
1
+function formatAs12HourClock() {}
2
3
+const currentOutput = formatAs12HourClock("08:00");
4
+const targetOutput = "08:00 am";
5
+console.assert(
6
+ currentOutput === targetOutput,
7
+ `current output: ${currentOutput}, target output: ${targetOutput}`
8
+);
0 commit comments