別の関数内から呼び出された関数の場合、メイン/親関数を終了するにはどうすればよいですか?
例えば:
function(firstFunction(){
//stuff
secondFunction()
// stuff if second function doesnt exit
}
function secondFunction(){
if( // some stuff here to do checks...){
/***** Exit from this and firstFunction, i.e stop code after this function call from running ****/
}
}