Skip to content

Commit e5bd381

Browse files
authored
fix: semicolons (2-9)
1 parent af03964 commit e5bd381

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

2-variables/09-bmi.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// BMI 🏋️‍♀️
22
// Codédex
33

4-
let weight = 92.3
5-
let height = 1.86
4+
let weight = 92.3;
5+
let height = 1.86;
66

7-
let bmi = weight / (height**2)
7+
let bmi = weight / (height**2);
88

9-
console.log(bmi)
9+
console.log(bmi);

0 commit comments

Comments
 (0)