Skip to content

Commit 5f95d10

Browse files
author
Juan
committed
#00-JavaScript
1 parent aca74ee commit 5f95d10

File tree

1 file changed

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

1 file changed

+16
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
// https://developer.mozilla.org/es/docs/Web/JavaScript
2+
/* Comentarios en varias lineas */
3+
4+
let Name = "juan";
5+
const name = "Juan"
6+
7+
//tipos de datos
8+
9+
let Number = 1;
10+
let Float = 1.4
11+
let Stright = "Hola"
12+
let Boolean = true
13+
let Undefined = undefined
14+
let Null = null
15+
16+
console.log ("¡Hola, JavaScript!")

0 commit comments

Comments
 (0)