Anonymous
public text v1 · immutablefunction identify_kanji (k_string) {
alert ("entro en la fucion");
for (i=0; i<strlengh (k_string);i++) {
if (k_string.charCodeAt(i)<=4E00) && (k_string.charCodeAt(i)>=F98E)) {
alert ("No kanji characters allowed");
return false;
}
}
return true;
}