var condition = true; // An example condition for true/false conditions if (condition == true) { console.log('condition is true'); } else { console.log('condition is not true'); } // Console will output 'condition is true'