Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
条件が満たされた場合にスクリプトの実行を停止するにはどうすればよいですか?他になくてもそれを行うことは可能ですか?例えば:
if(data == 'false') { stop } rest of the function...
関数から戻ることができます:
if (data == 'false') { return false; }