throw an error in js code example
Example 1: js throw error
throw new Error('Whoops!')
Example 2: try catch in javascript
try {
}
catch(err) {
}
finally {
}
Example 3: javascript try
var someNumber = 1;
try {
someNumber.replace("-","");
} catch(err) {
console.log(err);
}
Example 4: javascript throw new error
throw new Error("Error message here");
Example 5: javascript try catch
<html>
<head>Exception Handling</head>
<body>
<script>
try {
throw new Error('This is the throw keyword');
}
catch (e) {
document.write(e.message);
}
</script>
</body>
</html>