Skip to content

Commit 635ba47

Browse files
authored
Update 3.js
1 parent 1de07dc commit 635ba47

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

  • Sprint-1/2-mandatory-errors

Sprint-1/2-mandatory-errors/3.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,6 @@ const last4Digits = cardNumber.slice(-4);
77
// Then run the code and see what error it gives.
88
// Consider: Why does it give this error? Is this what I predicted? If not, what's different?
99
// Then try updating the expression last4Digits is assigned to, in order to get the correct value
10+
11+
const cardNumber2 = String(cardNumber);
12+
const last4Digits = cardNumber2.slice(-4);

0 commit comments

Comments
 (0)