Created
April 19, 2016 15:20
-
-
Save jeantil/43d767905976fb1be4581cd5c178d140 to your computer and use it in GitHub Desktop.
This file contains hidden or 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> | |
<body> | |
<script> | |
var o = function(x){ | |
console.log("debut"); | |
var groups=[]; | |
console.log(groups); | |
groups.push("toto") | |
console.log("fin"); | |
console.log("============="); | |
} | |
for(var i=0; i<20; i++){ | |
o(i); | |
} | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment