first commit

This commit is contained in:
编码猿
2024-09-27 02:06:13 +08:00
commit 852d94fbb9
36760 changed files with 3274413 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>循环语句</title>
</head>
<body>
</body>
<script>
// for for of for in foreach filter
// while
// var sum = 0
// for (var i = 1; i<=100; i++) {
// sum+=i
// }
// console.log(sum);
// for (;;) {
// console.log("1111");
// }
// while
// var sum = 0, i = 1;
// while (i <= 100) {
// sum+=i
// i++
// }
// console.log(sum);
// var a = 1;
// do {
// console.log("1111");
// } while (a > 3);
</script>
</html>