Skip to content

Commit 7b9e573

Browse files
second commit for sprint change
1 parent bd936fc commit 7b9e573

5 files changed

Lines changed: 14 additions & 3 deletions

File tree

‎Sprint-2/2-mandatory-errors/0.js‎

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
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+
/*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?
3+
for single line we used // and for multiple line use /*

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,6 @@
22

33
const age = 33;
44
age = age + 1;
5+
6+
/* In this case age is not const means variable is not reassigned so that,
7+
we throws a TypeError: Assignment to constant variable.2

‎Sprint-2/2-mandatory-errors/2.js‎

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,6 @@
33

44
console.log(`I was born in ${cityOfBirth}`);
55
const cityOfBirth = "Bolton";
6+
7+
8+
/*we need to put declare variables(const cityOfBirth = "Bolton";) in first line after using expression console.log.

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

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
const 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

‎Sprint-2/2-mandatory-errors/4.js‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
const 12HourClockTime = "8:53pm";
22
const 24hourClockTime = "20:53";
3+
/*variable is not start with number show syntaxerror.

0 commit comments

Comments
 (0)