Use the triple equality operator as it will work just as expected.
Right:
var a = 0;
if (a !== '') {
console.log('winning');
}
Wrong:
var a = 0;
if (a == '') {
console.log('losing');
}
Use the triple equality operator as it will work just as expected.
Right:
var a = 0;
if (a !== '') {
console.log('winning');
}
Wrong:
var a = 0;
if (a == '') {
console.log('losing');
}