これが私のテストです:
var test = function () {
$.each([1, 2], function () {
if(true !== false) { // it is just an example
alert('I am here');
return false; // how should I make the function test to stop or to exit here?
}
});
return true;
};
alert(test());
</p>
test
関数が false を返すようにしたいのですが、 true を返します。
なんで?コードを修正するにはどうすればよいですか? 詳しくはコメントをご覧ください。