File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed
Sprint-1/2-mandatory-errors Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change 11const cardNumber = 4533787178994213 ;
2- const last4Digits = cardNumber . slice ( - 4 ) ;
2+ const last4Digits = ( cardNumber . toString ( ) ) . slice ( - 4 ) ;
33
44// The last4Digits variable should store the last 4 digits of cardNumber
55// However, the code isn't working
66// Before running the code, make and explain a prediction about why the code won't work
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+ /* my prediction about why the code isn't working is because either the new variable is declared with const keyword
12+ or the value of the variable cardNumber is a number not a string whereas the method .slice works only with strings */
13+ // the error it gives 'cardNumber.slice is not a function'
14+ // It gives this error because the computer assumes the coder is trying to invoke a function
15+ // yes it is my second prediction
16+ // updating the expression last4Digits is assigned to, in order to get the correct value is as follows
17+ // method one: puting the value of the variable cardNumber into quotes
18+ // method two: invoking the method .toString() to convert the type of the variable from number to string
You can’t perform that action at this time.
0 commit comments