Skip to content

Instantly share code, notes, and snippets.

@rosylilly
Last active August 29, 2015 14:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rosylilly/669b3a05e9869fb941fd to your computer and use it in GitHub Desktop.
Save rosylilly/669b3a05e9869fb941fd to your computer and use it in GitHub Desktop.
WTF
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>JS TEST</title>
</head>
<body>
<script type="text/javascript">
(function() {
"use strict";
var f = function t(r, t, n) {
return "this is " + t;
};
console.debug(f("t"));
})();
</script>
<p>Please check your console</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment