Skip to content

Instantly share code, notes, and snippets.

@w3farid
Created January 5, 2020 16:06
Show Gist options
  • Save w3farid/a48535347196de772a90e598c3948641 to your computer and use it in GitHub Desktop.
Save w3farid/a48535347196de772a90e598c3948641 to your computer and use it in GitHub Desktop.
JS Bin // source https://jsbin.com/roloneq
<!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">
"use strict";
var tst = (function () {
console.log(10 + 10);
return 10 + 10;
})();
</script>
<script id="jsbin-source-javascript" type="text/javascript">let tst = (()=>{
console.log(10+10);
return 10+10;
})();</script></body>
</html>
"use strict";
var tst = (function () {
console.log(10 + 10);
return 10 + 10;
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment