|
|
|
|
|
by comp1927
3627 days ago
|
|
//Try this in your console. function should_not_exclude_10B_10C(x) {
if ("089" < x < "100") {
console.log('excluding ' + x + ' in report.')
} else {
console.log(x + ' is normal.')
}
} should_not_exclude_10B_10C("10B") should_not_exclude_10B_10C("10C") |
|