if statement



examples/js/if_statement.js
"use strict";

var y = 42;

if (y === 42) {
    console.log('y is 42');
}

// y is 42