Skip to content

Commit 89936ff

Browse files
committed
#00 - JavaScript
1 parent 382a6c8 commit 89936ff

File tree

1 file changed

+17
-0
lines changed
  • Roadmap/00 - SINTAXIS, VARIABLES, TIPOS DE DATOS Y HOLA MUNDO/javascript

1 file changed

+17
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
//Sitio web: https://developer.mozilla.org/es/docs/Web/JavaScript
2+
3+
//Comentario de una sola linea
4+
5+
/*Comentario
6+
en multiples
7+
lineas*/
8+
9+
let variable = "Hola";
10+
const constante = "Mundo";
11+
12+
let numero = 1;
13+
let cadena = "Hola mundo";
14+
let booleano = true;
15+
let indefinido = undefined;
16+
17+
console.log("Hola, JavaScript!");

0 commit comments

Comments
 (0)