Created
April 13, 2015 16:18
-
-
Save tomek-he-him/1dfa191da224093edca8 to your computer and use it in GitHub Desktop.
JS Bin // source http://jsbin.com/joqopi
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"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