We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d7fb08a + 004e65c commit 0ed2cadCopy full SHA for 0ed2cad
Roadmap/00 - SINTAXIS, VARIABLES, TIPOS DE DATOS Y HOLA MUNDO/javascript/cgomezadolfo.js
@@ -0,0 +1,20 @@
1
+// No hay sitio web oficial, lo mas cercano es https://developer.mozilla.org/es/docs/Web/JavaScript
2
+
3
+// Comentario de una linea
4
5
+/*Comentario de
6
+varias
7
+lineas */
8
+//declaracion de variable y constante
9
+var variableQueNoSeUsa = 1;
10
+let variable = 2;
11
+const constante= 3;
12
13
+//variables de datos primitivos
14
15
+let numero = 123;
16
+let string = 'JavaScript'
17
+let boolean = true;
18
+let nulo = null;
19
20
+console.log('Hola, '+ string);
0 commit comments