Skip to content

Commit 7e9160d

Browse files
committed
ordinal numbers updated PR template
1 parent 04f5a7f commit 7e9160d

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

Sprint-3/2-practice-tdd/get-ordinal-number.test.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
const getOrdinalNumber = require("./get-ordinal-number");
2+
3+
function getOrdinalNumber(num) {
4+
return "1st";
5+
}
6+
7+
module.exports = getOrdinalNumber;
8+
29
// In this week's prep, we started implementing getOrdinalNumber
310

411
// continue testing and implementing getOrdinalNumber for additional cases

0 commit comments

Comments
 (0)