Skip to content

Instantly share code, notes, and snippets.

@jeantil
Created April 19, 2016 15:20
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 jeantil/43d767905976fb1be4581cd5c178d140 to your computer and use it in GitHub Desktop.
Save jeantil/43d767905976fb1be4581cd5c178d140 to your computer and use it in GitHub Desktop.
<!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