Expression Evaluation as true/false, with nulls, undefined, etc

by Aboubacar Bah

JavaScript

use strict;

var a = 6, b = "ten";

if ( a < b  || b < a ) {

alert("this is true!");

}