Skip to content

Instantly share code, notes, and snippets.

@hiratara
Created April 29, 2009 06:38
Show Gist options
  • Save hiratara/103630 to your computer and use it in GitHub Desktop.
Save hiratara/103630 to your computer and use it in GitHub Desktop.
<html>
<body>
<script type="text/javascript">
var noReturn = (function () {})();
document.write("NO RETURN:" + noReturn + "<br>");
var explicitReturn = (function () {return false;})();
document.write("EXPLICIT RETURN:" + explicitReturn + "<br>");
</script>
</body>
</html>
/*
NO RETURN:undefined
EXPLICIT RETURN:false
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment