how to catch error in javascript code example

Example 1: catch error message js

try {
  // test code
} catch (error) { // if error
  console.error(error); // return error
}

Example 2: javascript try

var someNumber = 1;
try {
  someNumber.replace("-",""); //You can't replace a int
} catch(err) {
 console.log(err);
}

Example 3: javascript try catch

<html>  
<head>Exception Handling</head>  
<body>  
<script>  
try {  
   throw new Error('This is the throw keyword'); //user-defined throw statement.  
}  
catch (e) {  
  document.write(e.message); // This will generate an error message  
}  
</script>  
</body>  
</html>

Tags:

Java Example