JSFiddle - React, Tailwind, and code Playground

by noblood

JavaScript

// ON TEST JavaScript //
// Execute if the length equal 75 regarless of the data type //

var length = "75";

if(length == 75) {
    alert("true");
}

if(length == "75") {
    alert("also true");
}

/*
// Execute if the length equal 75 regard of the data type //
if(length === 75) {
    alert("true");
} else {
    alert("false");
}
*/