Skip to content

Commit ceae1cf

Browse files
committed
Completed 3.js exercise
1 parent 88aee46 commit ceae1cf

File tree

1 file changed

+1
-1
lines changed
  • Sprint-1/2-mandatory-errors

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const cardNumber = 4533787178994213;
2-
const last4Digits = cardNumber.slice(-4);
2+
const last4Digits = `${cardNumber}`.slice(-4)
33

44
// The last4Digits variable should store the last 4 digits of cardNumber
55
// However, the code isn't working

0 commit comments

Comments
 (0)