We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 77c15f9 + c3d1029 commit e323cf8Copy full SHA for e323cf8
Roadmap/00 - SINTAXIS, VARIABLES, TIPOS DE DATOS Y HOLA MUNDO/javascript/FullStacKarlo.js
@@ -0,0 +1,26 @@
1
+//https://www.javascript.com//
2
+
3
+//Comentario de una sola línea//
4
5
+/*
6
+ Esto
7
+ Es
8
+ Un
9
+ Comentario
10
+ Multilinea
11
+*/
12
13
14
+var x = 5; //Variable llamada X con valor igual a 5//
15
16
+const price = 20; //Variable constante llamada price con valor igual a 20//
17
18
+let name = carlos; //string//
19
+let age = 24; //int//
20
+let sundistanceinmeters = 149597870700; //BigInt//
21
+let boolean = false; //Booleano//
22
+let imNull = null; //Null//
23
+let sym1 = Symbol("simbolo1"); //Symbol//
24
+let myundefined = undefined; //Undefined//
25
26
+console.log("¡Hola, JavaScript!");
0 commit comments