Skip to content

Latest commit

 

History

History
27 lines (23 loc) · 227 Bytes

IfStatement.md

File metadata and controls

27 lines (23 loc) · 227 Bytes

IfStatement

IfStatement

const a = true;

if (!a) {
    const b = 456;
    const c = 123;
}
else {
    const d = 789;
}
$a = true;
if (!$a) {
    $b = 456;
    $c = 123;
}
else {
    $d = 789;
}