Skip to content

Commit 461e977

Browse files
Fix method to get last 4 digits of card number
1 parent 1fca7d0 commit 461e977

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.tostring().slice(-4);
33

44
console.log(last4Digits);
55

0 commit comments

Comments
 (0)