Skip to content

Commit af03964

Browse files
authored
fix: semicolons (2-8)
1 parent 3cdc191 commit af03964

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: 2-variables/08-temperature.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Temperature 🌡
22
// Codédex
33

4-
let temp_f = 56
5-
let temp_c = (temp_f - 32) / 1.8
4+
let temp_f = 56;
5+
let temp_c = (temp_f - 32) / 1.8;
66

7-
console.log(temp_c)
7+
console.log(temp_c);

0 commit comments

Comments
 (0)