このループの最後の反復にいるかどうかを確認するにはどうすればよいですか? この質問をして申し訳ありません。私は VB.NET でのプログラミングに慣れており、javascript は本質的に非常に不可解に思えます。
if (QuerySplit.length > 1) {
var NewQuery
for (i=0; i<QuerySplit.length; i++)
{
// if we're not on the last iteration then
if (i != QuerySplit.length) {
// build the new query
NewQuery = QuerySplit[i].value + " AND "
}
}
}