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 4470330 commit 86552feCopy full SHA for 86552fe
prep/sprint-2/assertions-exercise.js
@@ -0,0 +1,7 @@
1
+const calculation = 10 + 32;
2
+const result = 40;
3
+// console.assert(calculation === result);
4
+
5
+function formatAs12HourClock() {}
6
+console.log(formatAs12HourClock())
7
+console.assert(formatAs12HourClock("08:00") === "08:00 am" , `current output: ${formatAs12HourClock("08:00")} , target output: 08:00 am`);
0 commit comments