File tree Expand file tree Collapse file tree
Sprint-3/3-mandatory-implement Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1515// It should return a string of their Body Mass Index to 1 decimal place
1616
1717function calculateBMI ( weight , height ) {
18- // return the BMI of someone based off their weight and height
18+ const bmi = weight / ( height * height ) ;
19+ return bmi . toFixed ( 1 ) ;
1920}
21+
22+ console . log ( calculateBMI ( 70 , 1.73 ) ) ;
23+ console . log ( calculateBMI ( 60 , 1.6 ) ) ;
24+ console . log ( calculateBMI ( 90 , 1.85 ) ) ;
Original file line number Diff line number Diff line change 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 convertToUpperSnakeCase ( str ) {
19+ return str . toUpperCase ( ) . split ( ' ' ) . join ( '_' ) ;
20+ }
21+
22+ console . log ( convertToUpperSnakeCase ( "hello there" ) ) ;
23+ console . log ( convertToUpperSnakeCase ( "lord of the rings" ) ) ;
Original file line number Diff line number Diff line change 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 ( kg ) {
9+ return kg * 2.20462 ;
10+ }
11+
12+ console . log ( toPounds ( 70 ) ) ;
13+ console . log ( toPounds ( 60 ) ) ;
14+ console . log ( toPounds ( 90 ) ) ;
You can’t perform that action at this time.
0 commit comments