2022 visit: it’s fun seeing where I started, now JavaScript is my best friend.
Hello there!
I’m wondering if there’s a way to make a IF test case-insensitive?
For example:
$(eval
var a = “$(query)”;
var b = “TestABC”;
var c = 0;
if(a==b){
c = 1;
}
c;
)
and even if the $(query) variable is “TestABC” or “testabc” the response of the command to be 1.
Thanks in advance for the answer!