ไธไฝไฝฟ็จ try
๏ผไธๅฎ่ฆ็จ catch(err)
ๅปๆใๆๆ็้ฏ่ชคใ๏ผๅฆๅๅฏ่ฝๆๆผๆใ่ชๅทฑๆฒๆ้ ๆ็้ฏ่ชคใ
try {
noSuchFunc(); // โ ReferenceError (not catched)
} catch(err) {
// `console.log(err)` omitted ... (dangerous)โ
// or, `throw err` omitted ...
}
// the code will continue executing happilyโ