File tree Expand file tree Collapse file tree
Sprint-2/2-mandatory-errors Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- This is just an instruction for the first activity - but it is just for human consumption
2- We don 't want the computer to run these 2 lines - how can we solve this problem?
1+ / * T h i s i s j u s t a n i n s t r u c t i o n f o r t h e f i r s t a c t i v i t y - b u t i t i s j u s t f o r h u m a n c o n s u m p t i o n
2+ We don 't want the computer to run these 2 lines - how can we solve this problem?
3+ for single line we used // and for multiple line use /*
Original file line number Diff line number Diff line change 22
33const age = 33 ;
44age = age + 1 ;
5+
6+ / * I n t h i s c a s e a g e i s n o t c o n s t m e a n s v a r i a b l e i s n o t r e a s s i g n e d s o t h a t ,
7+ we throws a TypeError: Assignment to constant variable .2
Original file line number Diff line number Diff line change 33
44console . log ( `I was born in ${ cityOfBirth } ` ) ;
55const cityOfBirth = "Bolton" ;
6+
7+
8+ / * w e n e e d t o p u t d e c l a r e v a r i a b l e s ( c o n s t c i t y O f B i r t h = " B o l t o n " ; ) i n f i r s t l i n e a f t e r u s i n g e x p r e s s i o n c o n s o l e .l o g .
Original file line number Diff line number Diff line change 11const cardNumber = 4533787178994213 ;
2- const last4Digits = cardNumber . slice ( - 4 ) ;
2+ const last4Digits = string ( 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.
89// Consider: Why does it give this error? Is this what I predicted? If not, what's different?
910// Then try updating the expression last4Digits is assigned to, in order to get the correct value
11+ //Card number is a number not a string so it will throw typeerror.
12+ // i did not think slice method can not run in number method so that i change it in string
Original file line number Diff line number Diff line change 11const 12 HourClockTime = "8:53pm" ;
22const 24 hourClockTime = "20:53" ;
3+ / * v a r i a b l e i s n o t s t a r t w i t h n u m b e r s h o w s y n t a x e r r o r .
You can’t perform that action at this time.
0 commit comments