Skip to content
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

Open
wants to merge 7 commits into
base: main
Choose a base branch
from

Conversation

HannaOdud
Copy link

Learners, PR Template

Self checklist

  • I have committed my files one by one, on purpose, and for a reason
  • [x ] I have titled my PR with COHORT_NAME | FIRST_NAME LAST_NAME | REPO_NAME | WEEK
  • [x ] I have tested my changes
  • [x ] My changes follow the style guide
  • [x ] My changes meet the requirements of this task

Changelist

Briefly explain your PR.

Questions

Ask any questions you have for your reviewer.

@HannaOdud HannaOdud added the Needs Review Participant to add when requesting review label Apr 1, 2025
@cjyuan cjyuan added the 👀 Review Git Changes requested to do with Git label Apr 2, 2025
@cjyuan
Copy link

cjyuan commented Apr 2, 2025

It seems the current branch is created from your Sprint-3 branch instead of from main.

Can you backup your files in this branch first and try the following steps to rebase it onto main?

This instructions assume you had created a branch named B2 from a branch named B1 instead of from main, and you wanted to rebase B2 from B1 to main. (In your case, B2 refers to the current branch, and B1 refers to your Sprint-3 branch,
coursework/sprint-3)

1. Open a terminal in VSCode

2. Switch to the branch you want to rebase (B2)

git switch B2

Note: You can check which branch is the current branch via the command git branch (to list all branches with current branch highlighted)

3. Rebase B2 from B1 onto main

git rebase --onto main B1 B2

For more details about this command, see
https://www.atlassian.com/git/tutorials/rewriting-history/git-rebase#:~:text=interactive%20rebase%20display-,Advanced%20rebase%20application,-The%20command%20line

4. Update (and Overwrite) your files in branch B2 at Github

While you are in branch B2 and you have verified that it has been successfully rebased, execute the following command:
git push --force origin

@cjyuan cjyuan added Review in progress This review is currently being reviewed. This label will be replaced by "Reviewed" soon. and removed Needs Review Participant to add when requesting review labels Apr 2, 2025
Copy link

@cjyuan cjyuan left a 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.

@@ -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;
Copy link

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);
Copy link

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.

Comment on lines 17 to 20
function calculateBMI(weight, height) {
let BMI = weight/(height*height);
return BMI.toFixed(1);

Copy link

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
Copy link

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.

Comment on lines 54 to 59
const currentOutput6 = formatAs12HourClock("12:00");
const targetOutput6 = "00:00 pm";
console.assert(
currentOutput5 === targetOutput5,
`current output: ${currentOutput5}, target output: ${targetOutput5}`
);
Copy link

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");
Copy link

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).

@cjyuan cjyuan added Reviewed Volunteer to add when completing a review and removed Review in progress This review is currently being reviewed. This label will be replaced by "Reviewed" soon. labels Apr 2, 2025
@HannaOdud HannaOdud requested a review from cjyuan April 3, 2025 15:18
Copy link

@cjyuan cjyuan left a 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;
Copy link

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
Copy link

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";
Copy link

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?

@HannaOdud HannaOdud requested a review from cjyuan April 3, 2025 19:55
Copy link

@cjyuan cjyuan left a 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".

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
👀 Review Git Changes requested to do with Git Reviewed Volunteer to add when completing a review
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants