Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 873 Bytes

celsiusToFahrenheit.md

File metadata and controls

25 lines (20 loc) · 873 Bytes
title tags author_title author_url author_image_url description image
celsiusToFahrenheit
math,beginner
Deepak Vishwakarma
Implementation of "celsiusToFahrenheit" in typescript, javascript and deno.

TS JS 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