-
-
Notifications
You must be signed in to change notification settings - Fork 119
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
ITP_GLASGOW_MAR | HANNA_MYKYTIUK | MODULE_STRUCTURING_AND_TESTING_DATA | SPRINT_2 #441
base: main
Are you sure you want to change the base?
Conversation
It seems the current branch is created from your Sprint-3 branch instead of from Can you backup your files in this branch first and try the following steps to rebase it onto This instructions assume you had created a branch named 1. Open a terminal in VSCode2. Switch to the branch you want to rebase (
|
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.
Code is good.
I left you some suggestions to help you improve some of the code.
Please try to rebase the current branch onto main.
Sprint-2/1-key-errors/1.js
Outdated
@@ -18,3 +18,13 @@ console.log(decimalNumber); | |||
|
|||
// Finally, correct the code to fix the problem | |||
// =============> write your new code here | |||
|
|||
function convertToPercentage(decimalNumber) { | |||
decimalNumber = 0.5; |
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.
If we replace the parameter value, how do we expect to convert different numbers using this function?
decimalNumber = 0.5; | ||
const percentage = `${decimalNumber * 100}%`; | ||
|
||
console.log(decimalNumber); |
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.
I think the function is expected to compute and return a percentage string when given a number; it should not output 0.5
every time the function is called.
If we want to output 0.25 as 25%, we could write console.log( convertToPercentage(0.25) );
outside the function.
function calculateBMI(weight, height) { | ||
let BMI = weight/(height*height); | ||
return BMI.toFixed(1); | ||
|
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.
What type of value do you think the function should return? A number or a string?
Does your function return the type of value you think it should return?
|
||
// Call formatTimeDisplay with an input of 61, now answer the following: | ||
|
||
// b) What is the value assigned to num when pad is called for the first time? | ||
// =============> write your answer here | ||
// =============> write your answer here: 00:01:01 |
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.
I think you misread the question. That's not the value assigned to num
when the function pad()
is called for the first time.
const currentOutput6 = formatAs12HourClock("12:00"); | ||
const targetOutput6 = "00:00 pm"; | ||
console.assert( | ||
currentOutput5 === targetOutput5, | ||
`current output: ${currentOutput5}, target output: ${targetOutput5}` | ||
); |
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.
I think "12:00" should be converted to "12:00 pm" (noon).
); | ||
|
||
// hours = 00 and minutes = 00 | ||
const currentOutput5 = formatAs12HourClock("00:00"); |
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.
I think "00:00" should be converted to "12:00 am" (midnight).
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.
The code is improved! I think there are a few some improvements you can make. After you make the necessary changes, feel free to mark this as "Complete" (provided you also rebase the branch onto main
).
@@ -16,8 +16,9 @@ | |||
|
|||
function calculateBMI(weight, height) { | |||
let BMI = weight/(height*height); | |||
return BMI.toFixed(1); | |||
return Math.round(BMI * 100) / 100; |
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 approach works but it would round the number to two decimal place (because of 100
)
@@ -23,7 +23,7 @@ console.log(formatTimeDisplay(61)); | |||
// Call formatTimeDisplay with an input of 61, now answer the following: | |||
|
|||
// b) What is the value assigned to num when pad is called for the first time? | |||
// =============> write your answer here: 00:01:01 | |||
// =============> write your answer here: 61 |
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.
num
here refer to the parameter of pad()
. When pad()
is called the first time, the parameter passed to the function is not 61
.
console.assert( | ||
currentOutput5 === targetOutput5, | ||
`current output: ${currentOutput5}, target output: ${targetOutput5}` | ||
); | ||
|
||
// hours = 12 and minutes = 00 | ||
const currentOutput6 = formatAs12HourClock("12:00"); | ||
const targetOutput6 = "00:00 pm"; | ||
const targetOutput6 = "12:00 pm"; |
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.
Does your function return this expected value?
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.
Changes look good.
After you rebase this branch (so that there is no modified files in Sprint-3 folder), feel free to mark this as "Complete".
Learners, PR Template
Self checklist
Changelist
Briefly explain your PR.
Questions
Ask any questions you have for your reviewer.