MCPcopy Create free account
hub / github.com/AyushSaini00/60minuteJavaScript / celsiusToFahrenheit

Function celsiusToFahrenheit

Weather-app/app.js:77–79  ·  view source on GitHub ↗
(temp)

Source from the content-addressed store, hash-verified

75
76// CELSIUS TO FAHRENHEIT CONVERSION
77function celsiusToFahrenheit(temp){
78 return ((9/5) * temp) + 32;
79}
80
81// WHEN THE USER CLICKS ON THE TEMPERATURE ELEMENET
82function toggleUnits(){

Callers 1

toggleUnitsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected