Skip to content

Instantly share code, notes, and snippets.

@Amli
Created November 15, 2018 09:28
Show Gist options
  • Save Amli/f5eddbd35c09f04cf3af5a03ed5e108c to your computer and use it in GitHub Desktop.
Save Amli/f5eddbd35c09f04cf3af5a03ed5e108c to your computer and use it in GitHub Desktop.
// source https://jsbin.com
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<script>
for (var i = 0; i < 10; i++) {
setTimeout(function() {
console.log(i);
});
}
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment