hashset
に特定の値が含まれているかどうかを確認するにはどうすればよいjavascript
ですか? 私は動作していない次のことを試しました:
if (hashset.contains(finalDate)) {
alert("inside if");
}
私のjsコード:
$.each(cdata.lines, function(idx, line){
// line.hashsetvariable is my hashset which contain all dates and
// let finaldate is 2012-19-12
// I want to check this date in my hashset.
}