Skip to content

Commit 004e65c

Browse files
committed
#00 - javascript
1 parent b7b18ca commit 004e65c

File tree

1 file changed

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

1 file changed

+20
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)