Skip to content

Instantly share code, notes, and snippets.

@salexkidd
Created April 26, 2017 16:12
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 salexkidd/85012da162f93842e339711217759501 to your computer and use it in GitHub Desktop.
Save salexkidd/85012da162f93842e339711217759501 to your computer and use it in GitHub Desktop.
test
<html>
<script type="text/javascript">
var sougaku = 5000;
var kaesita = 0;
var risoku = 0;
for (var year=1; year <= 30; year++) {
for (var month=1; month <= 12; month++) {
kaesita = kaesita + 20;
console.log("---------------");
console.log("Year: " + year);
console.log("Month: " + month);
console.log("Kaesita: " + kaesita);
}
}
</script>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment