diff --git a/JavaScript/Functions.js b/JavaScript/Functions.js index d6d831b..f18ee5a 100644 --- a/JavaScript/Functions.js +++ b/JavaScript/Functions.js @@ -7,4 +7,8 @@ function returnSmallest(a, b) { } } -// Add your functions below this line :) ------------------------------------ \ No newline at end of file +// Add your functions below this line :) ------------------------------------ + +function fahrenheit2centrigrade(f) { + return ((f-32)*5.0)/9.0; +}