Skip to content

Commit add60e5

Browse files
Convert card number to string before slicing
1 parent b6b5341 commit add60e5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • Sprint-1/2-mandatory-errors

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.toString().slice(-4);
2+
const last4Digits = String(cardNumber).slice(-4);
33
console.log(last4Digits);
44
// The last4Digits variable should store the last 4 digits of cardNumber
55
// However, the code isn't working

0 commit comments

Comments
 (0)