throw គឺជាបញ្ជាតម្រូវឲ្យបង្កើតភាពមិនប្រក្រតី ពីព្រោះពេលខ្លះ យើងត្រូវបង្កើតភាពមិនប្រក្រតីដោយខ្លួនយើងផ្ទាល់។ ពិនិត្យកម្មវិធីខាងក្រោមនេះ៖
try{
//ការប្រើបញ្ជា throw ដើម្បីបង្កើតភាពមិនប្រក្រតី
throw Error('This is my exception.')
}catch(exception){
console.log(exception.message)
}finally{
console.log(`This statement is executed in any case!!`)
}