Passed test 1 toCelsius from exercise 07

This commit is contained in:
NetMan 2024-01-05 22:03:43 +01:00
parent 4938e86830
commit 46732dbe89
1 changed files with 3 additions and 1 deletions

View File

@ -1,7 +1,9 @@
const convertToCelsius = function() {
const convertToCelsius = function(deg) {
return (deg - 32) * (5/9);
};
const convertToFahrenheit = function() {
// x °C ≘ (x ×9/5+ 32) °F
};
// Do not edit below this line