xxxxxxxxxx
/******************************************
File Name: GIGATRON.C
Author: Dwight K. Coder
Last Update: July 4, 2014
Routines to control the twenty-first
century’s code evaluation tool.
The entry point to these routines is the
evaluateCode() routine at the bottom
of this file.
******************************************/
xxxxxxxxxx
const isTaskCompleted = false; // variable is false
if (isTaskCompleted) {
console.log('Task completed'); // value is false, so this is skipped
} else {
console.log('Task incomplete'); // code executed bc value false
}