Skip to content

Commit 5e49586

Browse files
Update
Update see also: # resolves:#
1 parent 10d4e2f commit 5e49586

File tree

23 files changed

+218
-19
lines changed

23 files changed

+218
-19
lines changed

.gitignore

Whitespace-only changes.

013 Bucle for/.idea/.gitignore

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

013 Bucle for/.idea/.name

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

013 Bucle for/.idea/jsLibraryMappings.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

013 Bucle for/.idea/misc.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

013 Bucle for/.idea/modules.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

013 Bucle for/.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

013 Bucle for/arrayII.iml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<module type="WEB_MODULE" version="4">
3+
<component name="NewModuleRootManager" inherit-compiler-output="true">
4+
<exclude-output />
5+
<content url="file://$MODULE_DIR$" />
6+
<orderEntry type="sourceFolder" forTests="false" />
7+
</component>
8+
</module>

013 Bucle for/bucles.js

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
/* Array II - Propiedades y métodos I */
2+
/* BUCLES */
3+
4+
/* WHILE */
5+
let pass = '';
6+
while(pass!='hola'){
7+
pass = prompt('Introdusca su contraseña')
8+
}
9+
console.log("Fin de Bucle");
10+
11+
/* DO WHILE */
12+
13+
do{
14+
let pass = '';
15+
pass = prompt('Introdusca su contraseña')
16+
17+
}while(pass!='hola')

013 Bucle for/index.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Bucles</title>
6+
</head>
7+
<body>
8+
9+
<script src="bucles.js"></script>
10+
11+
</body>
12+
</html>

0 commit comments

Comments
 (0)