平時也沒特別注意到的問題
JS
<script>
function test(){
try{
console.log("hello");
return;
}
finally{
console.log('test');
}
}
test();
</script>

C#

結論 : 會
平時也沒特別注意到的問題
<script>
function test(){
try{
console.log("hello");
return;
}
finally{
console.log('test');
}
}
test();
</script>

