forked from gnappo1/phase-0-js-expressions-lab
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.js
22 lines (16 loc) · 927 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//! Start by creating the variables for the data recorded
//* Then work on the conversion of the temperature from Celsius to Fahrenheit (or viceversa)
//! Start the calculation of the total temperatures
//* Then apply the conversion to calculate the total in the other unit of measurement
//* Call the variables: tot_temperature_in_fahrenheit and tot_temperature_in_celsius
//! Start the calculation of the average temperatures
//* Call the variables: avg_temperature_in_fahrenheit and avg_temperature_in_celsius
//! Console.log the results for your own inspection if you'd like
//! After creating the four variables mentioned above, uncomment the following lines
//* This way you can export them to the test file, this is essential for the tests to work
module.exports = {
// tot_temperature_in_fahrenheit,
// tot_temperature_in_celsius,
// avg_temperature_in_fahrenheit,
// avg_temperature_in_celsius
};