semicolon on line 53 (#27709)

This commit is contained in:
Sai Kiran
2018-12-21 08:44:25 +05:30
committed by Randell Dawson
parent 8df55d5296
commit c698ff4e3b

View File

@ -73,7 +73,7 @@ const num = someCondition ? 1 : 2;
// If x does not equal to 5, then the condition is FALSE. This results in z being set to 19.
if (x == 5) {
z = 7;
q = 42
q = 42;
} else {
z = 19;
}