Last active
August 29, 2015 14:26
-
-
Save rosylilly/669b3a05e9869fb941fd to your computer and use it in GitHub Desktop.
WTF
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 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