Skip to content

Commit 2ca0d04

Browse files
committed
using slice method to have display only the required amount
1 parent ef80dd1 commit 2ca0d04

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

  • Sprint-1/2-mandatory-errors

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

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
1-
const cardNumber = 4533787178994213;
1+
const cardNumber = "4533787178994213";
22
const last4Digits = cardNumber.slice(-4);
3+
console.log(last4Digits);
34

45
// The last4Digits variable should store the last 4 digits of cardNumber
56
// However, the code isn't working
67
// Before running the code, make and explain a prediction about why the code won't work
78
// Then run the code and see what error it gives.
9+
//const last4Digits = cardNumber.slice(-4);
10+
811
// Consider: Why does it give this error? Is this what I predicted? If not, what's different?
12+
// The error comes up cause the value of the cardNumber is not a string it's a number
13+
//Once you change the value to a string the .slice()
914
// Then try updating the expression last4Digits is assigned to, in order to get the correct value

0 commit comments

Comments
 (0)