We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 704285e commit 2fb782fCopy full SHA for 2fb782f
javascript/2469-convert-the-temperature.js
@@ -0,0 +1,9 @@
1
+/**
2
+ * @param {number} celsius
3
+ * @return {number[]}
4
+ */
5
+var convertTemperature = function(celsius) {
6
+ let kelvin = celsius + 273.15; // initialize kelvin and add 273.15 to celsius
7
+ let fahrenheit = (celsius * 1.80) + 32; // initialize fahrenheit and multiply 1.80 to celsius and add 32
8
+ return [kelvin, fahrenheit]; // return kelvin and fahrenheit as an array
9
+};
0 commit comments