Is there a way in Javascript to make strict comparison operations other than the one allowed with '===', i.e., a strict '<', '>', '<=' and '>='?
The code below using '<' performs a weak operation between a string and an integer. I would like to know if this could be achieved as done with '==='.
let a = '9';
let b = 10;
if (a < b) {
console.log('Success');
} // Prints 'Success'
Thanks!