Skip to content

Commit 59316af

Browse files
committed
Revert "Finished my tasks"
This reverts commit 6fa3bb9.
1 parent 6fa3bb9 commit 59316af

File tree

3 files changed

+2
-54
lines changed

3 files changed

+2
-54
lines changed

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

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,6 @@
1414
// Then when we call this function with the weight and height
1515
// It should return their Body Mass Index to 1 decimal place
1616

17-
function calculateBmi(weight,height) {
17+
function calculateBMI(weight, height) {
1818
// return the BMI of someone based off their weight and height
19-
}
20-
21-
22-
function calculateBMI (weight,height) {
23-
24-
let bmi = weight / (height*height)
25-
26-
return bmi.toFixed(1)
27-
28-
}
29-
30-
console.log(calculateBMI(70,1.73))
31-
19+
}

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

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,3 @@
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-
// function that turns text into UPPER_SNAKE_CASE
18-
19-
function makeUpperSnake(text) {
20-
21-
let newText =text.replace(/ /g,'_');
22-
23-
newText = newText.toUpperCase();
24-
25-
return newText;
26-
27-
}
28-
console.log(makeUpperSnake("hello there"));
29-
console.log(makeUpperSnake("lord of the rings"));
30-
31-

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

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -4,28 +4,3 @@
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-
9-
10-
11-
function toPounds(penceString) {
12-
13-
let numberStr =penceString.substring(0,penceString.length -1);
14-
15-
numberStr = numberStr.padStart(3,"0");
16-
17-
let pounds = numberStr.substring(0, numberStr.length -2);
18-
19-
let pence = numberStr.substring(numberStr.length -2).padEnd(2,"0");
20-
21-
return "£" +pounds + "." +pence;
22-
}
23-
24-
console.log(toPounds("399p"));
25-
console.log(toPounds("50p"));
26-
console.log(toPounds("5p"));
27-
console.log(toPounds("1200p"));
28-
29-
30-
31-

0 commit comments

Comments
 (0)