Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
5b7222c
added label name and email and button
MaharitB Sep 11, 2026
b07d9e0
added <select> for choosing color and size
MaharitB Sep 11, 2026
ef3c302
added labe; for color and size
MaharitB Sep 11, 2026
7737aa9
style body and button for the index.html
MaharitB Sep 12, 2026
444811f
remove comment tags and change footer content
MaharitB Sep 14, 2026
2cddd89
change the pattern in input name to .\*S.\*S*.
MaharitB Sep 14, 2026
87ad785
remove the comment on line 17.
MaharitB Sep 14, 2026
45a1625
change pattern of input name in to the `.*\S.*\S.*`
MaharitB Sep 15, 2026
cac261e
format document using prettier
MaharitB Sep 15, 2026
0692f93
add comment to 1-count.js
MaharitB Sep 18, 2026
d94c63b
add ${} in backticks to creat a template literal to get initials fro…
MaharitB Sep 18, 2026
3440700
add slice() that would rerturn the dir part of the path
MaharitB Sep 18, 2026
7a6f25a
declared dotIndex to save the the index of the dot.
MaharitB Sep 18, 2026
f3bef1e
declared a variable startDirIndex to save the start index of the stri…
MaharitB Sep 18, 2026
0fc7d66
delet content of slice()and replaced it to StartDirIndex
MaharitB Sep 18, 2026
9c79a73
delet 2 notes from the 3-paths.js
MaharitB Sep 18, 2026
9864337
change colon to semicolon
MaharitB Sep 18, 2026
c8fd52b
remove +1 from slice() to make the output include dot(.)
MaharitB Sep 18, 2026
4fb372d
delet all comment lines
MaharitB Sep 18, 2026
c308f99
remove the comment lines
MaharitB Sep 18, 2026
c4aa428
explain the expression in order of mathematical operation
MaharitB Sep 18, 2026
8d6342a
wrote console.log() to see what the code is doing
MaharitB Sep 18, 2026
e2942bc
format document
MaharitB Sep 18, 2026
1879076
add a single line comment for both lines
MaharitB Sep 18, 2026
107ef70
add a comment on why it produces error
MaharitB Sep 18, 2026
6e38086
add more to the comment
MaharitB Sep 18, 2026
4ed1c21
add comment an answer to a first given question
MaharitB Sep 18, 2026
1254df6
write a console .log() to run the code
MaharitB Sep 18, 2026
7a98897
edit code by enclosing the number by double quote then it will be tre…
MaharitB Sep 18, 2026
1289091
edit the comment and delet the comments that were previously there
MaharitB Sep 18, 2026
1ed3c12
add a coment on the error
MaharitB Sep 18, 2026
f0507c6
fix the error by putting , in the replaceall() and answer the questions
MaharitB Sep 18, 2026
158f71d
delet the question in the comment and edit my answer
MaharitB Sep 19, 2026
3c79ff2
run the code and edit my answers
MaharitB Sep 19, 2026
3231aad
describ line by line code
MaharitB Sep 19, 2026
b55c89a
revert to origional
MaharitB Sep 19, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Sprint-2/1-key-exercises/1-count.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ count = count + 1;

// Line 1 is a variable declaration, creating the count variable with an initial value of 0
// Describe what line 3 is doing, in particular focus on what = is doing
// line 3 = it is reassigning a value to the variable count
8 changes: 2 additions & 6 deletions Sprint-2/1-key-exercises/2-initials.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,5 @@ const firstName = "Creola";
const middleName = "Katherine";
const lastName = "Johnson";

// Declare a variable called initials that stores the first character of each string.
// This should produce the string "CKJ", but you must not write the characters C, K, or J in the code of your solution.

const initials = ``;

// https://www.google.com/search?q=get+first+character+of+string+mdn
const initials = `${firstName[0]}${middleName[0]}${lastName[0]}`;
console.log(initials);
24 changes: 6 additions & 18 deletions Sprint-2/1-key-exercises/3-paths.js
Original file line number Diff line number Diff line change
@@ -1,23 +1,11 @@
// The diagram below shows the different names for parts of a file path on a Unix operating system

// ┌─────────────────────┬────────────┐
// │ dir │ base │
// ├──────┬ ├──────┬─────┤
// │ root │ │ name │ ext │
// " / home/user/dir / file .txt "
// └──────┴──────────────┴──────┴─────┘

// (All spaces in the "" line should be ignored. They are purely for formatting.)

const filePath = "/Users/mitch/cyf/Module-JS1/week-1/interpret/file.txt";
const lastSlashIndex = filePath.lastIndexOf("/");
const base = filePath.slice(lastSlashIndex + 1);
console.log(`The base part of ${filePath} is ${base}`);

// Create a variable to store the dir part of the filePath variable
// Create a variable to store the ext part of the variable

const dir = ;
const ext = ;

// https://www.google.com/search?q=slice+mdn
const startDirIndex = filePath.lastIndexOf("Users");
const dir = filePath.slice(startDirIndex, lastSlashIndex);
console.log(`The dir part of ${filePath} is ${dir}`);
const dotIndex = filePath.lastIndexOf(".");
const ext = filePath.slice(dotIndex);
console.log(`The ext part of the ${filePath} is ${ext}`);
10 changes: 6 additions & 4 deletions Sprint-2/1-key-exercises/4-random.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ const maximum = 100;

const num = Math.floor(Math.random() * (maximum - minimum + 1)) + minimum;

// In this exercise, you will need to work out what num represents?
// Try breaking down the expression and using documentation to explain what it means
// It will help to think about the order in which expressions are evaluated
// Try logging the value of num and running the program several times to build an idea of what the program is doing
//num represents a number
//lets start by (maximum-minimum +1) which the output is 100.
//math.random()*100 returns random number between 0 and 100
//math.floor()it rounds a number to thier nearest integer,
//at the end we add 1.
console.log(num);
4 changes: 2 additions & 2 deletions Sprint-2/2-mandatory-errors/0.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
This is just an instruction for the first activity - but it is just for human consumption
We don't want the computer to run these 2 lines - how can we solve this problem?
//This is just an instruction for the first activity - but it is just for human consumption
//We don't want the computer to run these 2 lines - how can we solve this problem?
1 change: 1 addition & 0 deletions Sprint-2/2-mandatory-errors/1.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@

const age = 33;
age = age + 1;
// you can not reassign a value to variable that is declared const.
1 change: 1 addition & 0 deletions Sprint-2/2-mandatory-errors/2.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@

console.log(`I was born in ${cityOfBirth}`);
const cityOfBirth = "Bolton";
// The error is that the const declation and initialization came after console.log so no access for cityOfBirth.
11 changes: 4 additions & 7 deletions Sprint-2/2-mandatory-errors/3.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
const cardNumber = 4533787178994213;
const cardNumber = "4533787178994213";
const last4Digits = cardNumber.slice(-4);

// The last4Digits variable should store the last 4 digits of cardNumber
// However, the code isn't working
// Before running the code, make and explain a prediction about why the code won't work
// Then run the code and see what error it gives.
// Consider: Why does it give this error? Is this what I predicted? If not, what's different?
// Then try updating the expression last4Digits is assigned to, in order to get the correct value
// the code is not working because the number initialized should be in "" .
// so it can know it/or treat it as a string.
console.log(last4Digits);
2 changes: 2 additions & 0 deletions Sprint-2/2-mandatory-errors/4.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
const 12HourClockTime = "8:53pm";
const 24hourClockTime = "20:53";

// The error here is that the variable started with number.
15 changes: 6 additions & 9 deletions Sprint-2/3-mandatory-interpret/1-percentage-change.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,18 @@ let carPrice = "10,000";
let priceAfterOneYear = "8,543";

carPrice = Number(carPrice.replaceAll(",", ""));
priceAfterOneYear = Number(priceAfterOneYear.replaceAll("," ""));
priceAfterOneYear = Number(priceAfterOneYear.replaceAll("," , ""));

const priceDifference = carPrice - priceAfterOneYear;
const percentageChange = (priceDifference / carPrice) * 100;

console.log(`The percentage change is ${percentageChange}`);

// Read the code and then answer the questions below

// a) How many function calls are there in this file? Write down all the lines where a function call is made

// b) Run the code and identify the line where the error is coming from - why is this error occurring? How can you fix this problem?

// c) Identify all the lines that are variable reassignment statements

// d) Identify all the lines that are variable declarations

// e) Describe what the expression Number(carPrice.replaceAll(",","")) is doing - what is the purpose of this expression?
// There are two function calls. line 4 and 5
//The error is coming from the line 5, because there was no comma in the replaceAll() method .
// line 4 and 5 are the variable reassignment statments.
// line 1 ,2 ,7 and 8 are lines where variable declarions happened
// the method .replaceAll is replacing the coma (,) in the 10,000 and throws it 10000, the number function converts it into a number.
20 changes: 12 additions & 8 deletions Sprint-2/3-mandatory-interpret/2-time-format.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const movieLength = 8784; // length of movie in seconds
const movieLength = 3000; // length of movie in seconds

const remainingSeconds = movieLength % 60;
const totalMinutes = (movieLength - remainingSeconds) / 60;
Expand All @@ -9,17 +9,21 @@ const totalHours = (totalMinutes - remainingMinutes) / 60;
const result = `${totalHours}:${remainingMinutes}:${remainingSeconds}`;
console.log(result);

// For the piece of code above, read the code and then answer the following questions

// a) How many variable declarations are there in this program?

// b) How many function calls are there?

// c) Using documentation, explain what the expression movieLength % 60 represents
// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Arithmetic_Operators
//A.There are six variable declararions

// d) Interpret line 4, what does the expression assigned to totalMinutes mean?
//B. no function calls

// e) What do you think the variable result represents? Can you think of a better name for this variable?
// C.The % represents a remainder. The operator returns the remainder leftover when one operand which in
// this cas is movieLength is divided by a second operand in this case 60%.


// D.it means it is changing the value that was in second into minute by dividing it 60 after the top calculation makes it whole number.

//E. It represents the duration of the movie.movieLength/movieDuration.

// f) Try experimenting with different values of movieLength. Will this code work for all values of movieLength? Explain your answer

// yes it works, i experimented it with various values. I found it to be working properly.
16 changes: 14 additions & 2 deletions Sprint-2/3-mandatory-interpret/3-to-pounds.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ const penceString = "399p";

const penceStringWithoutTrailingP = penceString.substring(
0,
penceString.length - 1
penceString.length - 1,
);

const paddedPenceNumberString = penceStringWithoutTrailingP.padStart(3, "0");
const pounds = paddedPenceNumberString.substring(
0,
paddedPenceNumberString.length - 2
paddedPenceNumberString.length - 2,
);

const pence = paddedPenceNumberString
Expand All @@ -25,3 +25,15 @@ console.log(`£${pounds}.${pence}`);

// To begin, we can start with
// 1. const penceString = "399p": initialises a string variable with the value "399p"

// 2. penceStringWithoutTrailingP : it's value is the return of the method substring()which is 399.
// the substring(0,3-1),when the substring extracts string from index 0 to 2 =>399 and p will be dropped.

// 3. paddedPenceNumberString : its value is what the padstart() method returns which is the same.399
//padstart(3,0),it is supossed to add 0's till the needed length is reached which is 3=>399.

// 4. const Pound is initialized by the out come of the substring()method which is only 3. Because the
// substring start index is zero and end endex is 1.
// 5. const pence will be initialized there are two methods. the first one will extract the string form index 1
// the second one will add 0 which there is no need=> 99
//6.consol.log => 3.99
Loading