次のコード行を使用しています
var selectedMedId = jQuery.grep(privateVariables.medIdData, function (n) {
if (n.DescriptionWithCode.toString().toUpperCase() === description.toString().toUpperCase()) {
return n;
}
});
私もフォローしてみました
var selectedMedId = jQuery.grep(privateVariables.medIdData, function (n) {
return n.DescriptionWithCode.toString().toUpperCase() === description.toString().toUpperCase();
}
});
そして、私はこの警告を取り除きたいです。