-
-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NW6| FIDAA BASHIR | Module-JS1 | WEEK2 #179
base: main
Are you sure you want to change the base?
Changes from all commits
76f8ae3
29d74df
f92e05c
67e4d82
4d46444
f5c8974
d288602
3c74cfe
4790e5f
150892b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
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?*/ |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
// trying to create an age variable and then reassign the value by 1 | ||
|
||
const age = 33; | ||
let age = 33; | ||
age = age + 1; | ||
console.log(age); |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
// Currently trying to print the string "I was born in Bolton" but it isn't working... | ||
// what's the error ? | ||
|
||
console.log(`I was born in ${cityOfBirth}`); | ||
const cityOfBirth = "Bolton"; | ||
console.log(`I was born in ${cityOfBirth}`); |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
const 12HourClockTime = "20:53"; | ||
const 24hourClockTime = "08:53"; | ||
const twelveHourClockTime = "20:53"; | ||
const twentyFourHourClockTime = "08:53"; | ||
console.log(twelveHourClockTime); | ||
console.log(twentyFourHourClockTime); |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
// Predict and explain first... | ||
|
||
function sum(a, b) { | ||
return; | ||
a + b; | ||
return a + b; | ||
} | ||
|
||
console.log(`The sum of 10 and 32 is ${sum(10, 32)}`); | ||
|
||
//the error here that we should place the a + b expression directly after the return keyword. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is true, I would probably word it a bit differently - the problem is that the function returns nothing - the line below return is never executed. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,12 @@ | ||
// Predict and explain first... | ||
|
||
// Predict and explain first.. | ||
// This program should tell the user the last digit of each number. | ||
// Explain why getLastDigit is not working properly - correct the problem | ||
const num = 103; | ||
|
||
function getLastDigit() { | ||
return num.toString().slice(-1); | ||
function getLastDigit(num) { | ||
return num % 10; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is a clever solution. No one else I've seen has done this. It does have a small bug, though, if we change the inputs a bit. Also if possible some more explanation would be great |
||
} | ||
|
||
console.log(`The last digit of 42 is ${getLastDigit(42)}`); | ||
console.log(`The last digit of 105 is ${getLastDigit(105)}`); | ||
console.log(`The last digit of 806 is ${getLastDigit(806)}`); | ||
|
||
// This program should tell the user the last digit of each number. | ||
// Explain why getLastDigit is not working properly - correct the problem |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ | |
// interpret the error message and figure out why it's happening, if your prediction was wrong | ||
|
||
function capitalise(str) { | ||
let str = `${str[0].toUpperCase()}${str.slice(1)}`; | ||
str = `${str[0].toUpperCase()}${str.slice(1)}`; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Brilliant, why did this fix it? |
||
return str; | ||
} | ||
console.log(capitalise("hello")); |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,12 +2,14 @@ | |
// Write down the error you predict will be raised | ||
// Why will an error occur when this program runs? | ||
// Play computer with the example to work out what is going on | ||
//In this code, there is an error that the variable decimalNumber, declared twice. once as a parameter of the convertToPercentage function and again outside the function, because in JS variables can't be declared twice within the same scope | ||
// to fix this error, we need to delete the parameter in line 8, so we can call the function without any argument. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Well explained 👏 |
||
|
||
function convertToPercentage(decimalNumber) { | ||
function convertToPercentage() { | ||
const decimalNumber = 0.5; | ||
const percentage = `${decimalNumber * 100}%`; | ||
|
||
return percentage; | ||
} | ||
|
||
console.log(decimalNumber); | ||
console.log(convertToPercentage()); |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
|
||
// Predict and explain first... | ||
// this function should square any number but instead we're going to get an error | ||
// what is happening? How can we fix it? | ||
// the error here is the (num) variable is not defined within the square function. | ||
// to fix this error, we need to define the (num) variable within the square function, like this: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Spot on! |
||
|
||
function square(3) { | ||
return num * num; | ||
function square(num) { | ||
return num * num; | ||
} | ||
|
||
|
||
console.log(square(3)); |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,3 +13,14 @@ | |
// Given someone's weight in kg and height in metres | ||
// When we call this function with the weight and height | ||
// Then it returns their Body Mass Index to 1 decimal place | ||
|
||
function calculateBMI(weight, height) { | ||
const BMI = weight / (height * height); | ||
return BMI.toFixed(1); | ||
|
||
} | ||
Comment on lines
+16
to
+21
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I love this, simple elegant solution! |
||
const weight = 70; //weight in Kg | ||
const height = 1.73; // height in m | ||
|
||
const BMIResult = calculateBMI(weight, height); | ||
console.log("BMI:", BMIResult); |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,8 +10,17 @@ | |
// Then it returns the string in UPPER_CAMEL_CASE, so "HELLO_THERE" | ||
|
||
// Test case: we expect "lord of the rings" to be "LORD_OF_THE_RINGS" | ||
// Test case: we expect "the great gatsby" to be "THE_GREAT_GATSBY" | ||
// Test case: we expect "the da vinci code" to be "THE_DA_VINCI_CODE" | ||
|
||
// Come up with a clear, simple name for the function | ||
// Use the string documentation to help you plan your solution | ||
|
||
function camelCaseToWords(text) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is a great little function, well done. For next time, I'd probably name it differently, functions rend to get named something g like convertToUpperCamelCase() but this is a mere niggle |
||
const result = text.replaceAll(/\s/g, "_"); | ||
return result.toUpperCase(); | ||
} | ||
const text1 = "lord of the rings"; | ||
const text2 = "the great gatsby"; | ||
const text3 = "the great gatsby"; | ||
|
||
console.log(camelCaseToWords(text1)); | ||
console.log(camelCaseToWords(text2)); | ||
console.log(camelCaseToWords(text3)); |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,14 @@ | |
// Take this code and turn it into a reusable block of code. | ||
// Declare a function called toPounds with an appropriately named parameter. | ||
// Call this function a number of times to check it works for different inputs | ||
|
||
function toPounds(penceString) { | ||
const penceStringWithoutTrailingP = penceString.substring(0, penceString.length - 1); | ||
const paddedPenceNumberString = penceStringWithoutTrailingP.padStart(3, "0"); | ||
const pounds = paddedPenceNumberString.substring(0, paddedPenceNumberString.length - 2); | ||
const pence = paddedPenceNumberString.substring(paddedPenceNumberString.length - 2).padEnd(2, "0"); | ||
return `£${pounds}.${pence}`; | ||
} | ||
Comment on lines
+6
to
+13
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Looking good, appreciate the descriptive var names! |
||
console.log(toPounds("499p")); // we expect the output: £4.99 | ||
console.log(toPounds("123p")); // we expect the output: £1.23 | ||
console.log(toPounds("5p")); // we expect the output: £0.05 |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,3 +8,11 @@ | |
// Given a number, | ||
// When I call this function with a number | ||
// Then it returns the new price with VAT added on | ||
|
||
function calculatePriceWithVAT(price) { | ||
price = price * 1.2; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Works, Could just do return price * 1.2; here - this line isn't strictly necessary |
||
|
||
return price; | ||
} | ||
|
||
console.log(calculatePriceWithVAT(50)); |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,18 +26,29 @@ console.log(formatTimeDisplay(143)); | |
// Questions | ||
|
||
// a) When formatTimeDisplay is called how many times will pad be called? | ||
// Here The pad function is called three times. | ||
|
||
// Call formatTimeDisplay with an input of 143, now answer the following: | ||
|
||
// b) What value is assigned to the parameter num when pad is called for the first time? | ||
// When formatTimeDisplay is called with an input of 143, the value will be assigned to the parameter num when pad is called for the first time is 2. | ||
|
||
// c) What is the return value of pad when it is called for the first time? | ||
//The return value of pad when it is called for the first time is 02 | ||
|
||
// d) What is the value assigned to the parameter num when pad | ||
// is called for the last time in this program? Explain your answer | ||
//The value assigned to the parameter num when pad is called for the last time in this program is 00. | ||
// because the remaining seconds is the remainder of the seconds after dividing by 60 | ||
|
||
// e) What is the return value when pad is called | ||
// for the last time in this program? Explain your answer | ||
//The return value when pad is called for the last time in this program is 23. | ||
//because the assigned value will return the num value itself | ||
|
||
// f) Research an alternative way of padding the numbers in this code. | ||
// Look up the string functions on mdn | ||
//we can use padStart(2, '0') to pad the numbers to a length of two characters with the padding character '0'. like this: | ||
//function pad(num) { | ||
//return num.toString().padStart(2, '0'); | ||
//} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. All amazing here no faults that I can find, well done 👏 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is correct, and well explained.