summaryrefslogtreecommitdiff
path: root/Base/home/anon/js
diff options
context:
space:
mode:
Diffstat (limited to 'Base/home/anon/js')
-rw-r--r--Base/home/anon/js/throw.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/Base/home/anon/js/throw.js b/Base/home/anon/js/throw.js
new file mode 100644
index 0000000000..67c891f571
--- /dev/null
+++ b/Base/home/anon/js/throw.js
@@ -0,0 +1,5 @@
+try {
+ throw 123;
+} catch (e) {
+ console.log(e);
+}