Skip to content

Instantly share code, notes, and snippets.

@tomek-he-him
Created April 13, 2015 16:18
Show Gist options
  • Save tomek-he-him/1dfa191da224093edca8 to your computer and use it in GitHub Desktop.
Save tomek-he-him/1dfa191da224093edca8 to your computer and use it in GitHub Desktop.
JS Bin // source http://jsbin.com/joqopi
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<body>
<script id="jsbin-javascript">
"use strict";
var first = "value" || (function () {
return console.log("first default read.");
})();
var second = null || (function () {
return console.log("second default read.");
})();
</script>
<script id="jsbin-source-javascript" type="text/javascript">var first = "value" || (() => console.log("first default read."))();
var second = null || (() => console.log("second default read."))();</script></body>
</html>
"use strict";
var first = "value" || (function () {
return console.log("first default read.");
})();
var second = null || (function () {
return console.log("second default read.");
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment