diff options
Diffstat (limited to 'Base/home')
-rw-r--r-- | Base/home/anon/js/throw.js | 5 |
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); +} |