Skip to content

Instantly share code, notes, and snippets.

@domkl14
Created March 11, 2020 18:11
Show Gist options
  • Save domkl14/3e2d7d68a03cbe02829f143315b86738 to your computer and use it in GitHub Desktop.
Save domkl14/3e2d7d68a03cbe02829f143315b86738 to your computer and use it in GitHub Desktop.
JS Bin // source https://jsbin.com/jovituzofa
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<script id="jsbin-javascript">
// const x = () => Promise.reject(2);
const x = null;
(x && x()).catch(() => console.log('error'));
</script>
<script id="jsbin-source-javascript" type="text/javascript">// const x = () => Promise.reject(2);
const x = null;
(x && x()).catch(() => console.log('error'));</script></body>
</html>
// const x = () => Promise.reject(2);
const x = null;
(x && x()).catch(() => console.log('error'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment