Practice Set - Conditionals & Blocks within Braces
by subsari
JavaScript
"use strict";
alert("starting");
function compareCoercion()
var a = 6, b = "ten";
if ( a < b || b < a ) {
alert("this is true!");
}
// Inse
by subsari
"use strict";
alert("starting");
function compareCoercion()
var a = 6, b = "ten";
if ( a < b || b < a ) {
alert("this is true!");
}
// Inse