Html
<html>
<body>
<script>
try
{
alert("Hello");
// on the screen we will see "Hello"
myBook(); // error!!!!!!!!
alert("Bye");
}
catch (error)
{
alert(error);
// on the screen we will see "ReferenceError: myBook is not defined"
}
alert("I am reading books!");
// on the screen we will see "I am reading books!"
</script>
</body>
</html>
Html
<html>
<body>
<script>
alert("Hello");
// on the screen we will see "Hello"
myBook(); // error !!!!!!
alert("Bye");
</script>
</body>
</html>