Skip to content

Commit d22653d

Browse files
committed
practica de comentarios
1 parent de68ba2 commit d22653d

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

comentarios.html

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
</head>
6+
<body>
7+
<script>
8+
//Declaracion de variables
9+
var a = 1; //Varible a
10+
var b = 2;
11+
12+
/*
13+
* Esta operación realiza
14+
* la suma de a y b
15+
*/
16+
17+
//a = 2;
18+
19+
var c = a + b;
20+
alert(c);
21+
</script>
22+
</body>
23+
</html>

0 commit comments

Comments
 (0)