Skip to content

Instantly share code, notes, and snippets.

@Bijesse
Created July 31, 2014 16:35
Show Gist options
  • Save Bijesse/55ef0d0768f67f90cebe to your computer and use it in GitHub Desktop.
Save Bijesse/55ef0d0768f67f90cebe to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Count10</title>
</head>
<body>
A program that counts to 10
</body>
</html>
var i=1;
while(i<11)
{
console.log(i);
i = i + 1;
}
console.log("Loop terminated");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment