I'm using JavaScript's .search() function and I have this code:
var temp_cc_number = "4111 1111 1111 1111";
var checker = "****";
alert(temp_cc_number.search(checker));
I'm getting this error:
"Invalid quantifier"
What do you think this is? Any help would be greatly appreciated and rewarded!
Thanks! :)