Skip to content

Commit 8fb92c0

Browse files
authored
Create Debugging.js
1 parent 97183ca commit 8fb92c0

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

Debugging.js

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
const measureKelvin = function(){
2+
const measurement ={
3+
type : 'temp',
4+
unit : ' celsius',
5+
value : Number(prompt('DegreeCelsius')),
6+
}
7+
console.log(measurement);
8+
const kelvin = measurement.value +273;
9+
return kelvin;
10+
};
11+
12+
console.log(measureKelvin());

0 commit comments

Comments
 (0)