Skip to content

Commit 1e5cfdb

Browse files
committed
Completed exercises 3
1 parent 0f13007 commit 1e5cfdb

File tree

3 files changed

+41
-2
lines changed

3 files changed

+41
-2
lines changed

Sprint-2/3-mandatory-implement/1-bmi.js

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,11 @@
1515
// It should return their Body Mass Index to 1 decimal place
1616

1717
function calculateBMI(weight, height) {
18-
// return the BMI of someone based off their weight and height
19-
}
18+
let heightSquared = height * height;
19+
let bmi = weight / heightSquared;
20+
return bmi.toFixed(1);
21+
}
22+
23+
console.log(calculateBMI(70, 1.73));
24+
// Expected output: 23.4
25+
// Actual output: 23.4

Sprint-2/3-mandatory-implement/2-cases.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,13 @@
1414
// You will need to come up with an appropriate name for the function
1515
// Use the MDN string documentation to help you find a solution
1616
// This might help https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/toUpperCase
17+
18+
function toUpperSnakeCase(inputString) {
19+
let upperCaseString = inputString.toUpperCase();
20+
let upperSnakeCaseString = upperCaseString.replace(/ /g, "_");
21+
return upperSnakeCaseString;
22+
}
23+
24+
console.log(toUpperSnakeCase("lord of the rings"));
25+
// Expected output: "LORD_OF_THE_RINGS"
26+
// Actual output: "LORD_OF_THE_RINGS"

Sprint-2/3-mandatory-implement/3-to-pounds.js

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,26 @@
44
// You will need to declare a function called toPounds with an appropriately named parameter.
55

66
// You should call this function a number of times to check it works for different inputs
7+
8+
function toPounds(penceStringWithP) {
9+
const penceStringWithoutTrailingP = penceStringWithP.substring(
10+
0,
11+
penceStringWithP.length - 1
12+
);
13+
const paddedPenceNumberString = penceStringWithoutTrailingP.padStart(3, "0");
14+
const pounds = paddedPenceNumberString.substring(
15+
0,
16+
paddedPenceNumberString.length - 2
17+
);
18+
19+
const pence = paddedPenceNumberString
20+
.substring(paddedPenceNumberString.length - 2)
21+
.padEnd(2, "0");
22+
23+
return "£" + pounds + "." + pence;
24+
}
25+
26+
console.log(toPounds("50p")); // Exp: £0.50, Acc: £0.50
27+
console.log(toPounds("399p")); // Exp: £3.99, Acc: £3.99
28+
console.log(toPounds("5p")); // Exp: £0.05, Acc: £0.05
29+
console.log(toPounds("12345p")); // Exp: £123.45, Acc: £123.45

0 commit comments

Comments
 (0)