wiki/content/20201111092905-javascript_exceptions.md

44 lines
1 KiB
Markdown
Raw Permalink Normal View History

2024-05-06 20:40:05 +00:00
---
2024-10-30 17:34:11 +00:00
date: 2020-11-11
2024-05-06 20:40:05 +00:00
id: 44e4d5c4-ea16-4417-a8e8-5036d3fdd370
title: JavaScript Exceptions
---
# Introduction
[JavaScript](20200613170905-javascript) supports exceptions.
# Syntax
``` javascript
function promptDirection(question) {
let result = prompt(question);
if (result.toLowerCase() == "left") return "L";
if (result.toLowerCase() == "right") return "R";
throw new Error("Invalid direction: " + result);
}
function look() {
if (promptDirection("Which way?") == "L") {
return "a house";
} else {
return "two angry bears";
}
}
try {
console.log("You see", look());
} catch (error) {
console.log("Something went wrong: " + error);
}
```
# See also
- [Error Sub Types](20201111093101-javascript_error_sub_types)
- [Custom Error Types](20201111093651-javascript_custom_error_types)
- [Finally](20201111094033-javascript_exceptions_finally)
- [JavaScript Error Handling](20200901105237-error_handling)
- [JavaScript](20200613170905-javascript)
- [JavaScript Catch Binding](20201116154444-javascript_catch_binding)