A SyntaxError is thrown if you try to evaluate code with a syntax error. For example, the below missing quote for the function parameter throws a syntax error
1 2 3 4 5 6 | try { eval("greeting('welcome)"); // Missing ' will produce an error } catch(err) { console.log(err.name); } |
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.