An error object is a built in error object that provides error information when an error occurs. It has two properties: name and message. For example, the below function logs error details,
1 2 3 4 5 6 | try { greeting("Welcome"); } catch(err) { console.log(err.name + "<br>" + err.message); } |
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.