Skip to content

Commit 31446ec

Browse files
committed
Remove console.log debugging code from 3-get-card-value.js file
1 parent 00515f5 commit 31446ec

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

Sprint-3/1-implement-and-rewrite-tests/implement/3-get-card-value.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
// just make one change at a time -- don't rush -- programmers are deep and careful thinkers
1010
function getCardValue(card) {
1111
card = card.substring(0 , card.length -1); // Remove the suit emoji
12-
console.log(card);
1312
if (card === "A") {
1413
return 11;
1514
} if (card === "J" || card === "Q" || card === "K" || card === "10") {

0 commit comments

Comments
 (0)