i'm having the following code:
var specialchars = [246,214,228,196,252,220,223]; // holds german umlauts + ß
var foo = "abcdefä41hl";
what's the best practise for detecting if foo contains a character's ascii-code from the array? in that case it would return true as it contains "ä" (ascii code 228).
thanks
specialcharsan array of strings?