title | tags | author_title | author_url | author_image_url | description | image |
---|---|---|---|---|---|---|
celsiusToFahrenheit |
math,beginner |
Deepak Vishwakarma |
Implementation of "celsiusToFahrenheit" in typescript, javascript and deno. |
Converts Celsius to Fahrenheit.
Follows the conversion formula F = 1.8C + 32
.
const celsiusToFahrenheit = (degrees: number) => 1.8 * degrees + 32;
celsiusToFahrenheit(33); // 91.4