forked from mouredev/roadmap-retos-programacion
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request mouredev#4521 from JoaquinLopez14/main
#[00] - [Javascript]
- Loading branch information
Showing
1 changed file
with
48 additions
and
0 deletions.
There are no files selected for viewing
48 changes: 48 additions & 0 deletions
48
Roadmap/00 - SINTAXIS, VARIABLES, TIPOS DE DATOS Y HOLA MUNDO/javascript/JoaquinLopez14.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
/* | ||
* EJERCICIO: | ||
* 1 Crea un comentario en el código y coloca la URL del sitio web oficial del | ||
* lenguaje de programación que has seleccionado. | ||
* 2 Representa las diferentes sintaxis que existen de crear comentarios | ||
en el lenguaje (en una línea, varias...). | ||
* 3 Crea una variable (y una constante si el lenguaje lo soporta). | ||
* 4 Crea variables representando todos los tipos de datos primitivos | ||
del lenguaje (cadenas de texto, enteros, booleanos...). | ||
* 5 Imprime por terminal el texto: "¡Hola, [y el nombre de tu lenguaje]!" | ||
*/ | ||
|
||
|
||
// 1: https://developer.mozilla.org/es/docs/Web/JavaScript | ||
|
||
// 2: Existen 2 formas de crear comentarios en JavaScript: | ||
// Comentario de una sola línea | ||
// Esto es un comentario de una sola línea | ||
|
||
/* | ||
Comentario de múltiples líneas | ||
Esto es un comentario | ||
que abarca varias líneas | ||
*/ | ||
|
||
// 3 = | ||
let variable = 1; // variable | ||
const variable2 = 2; // constante | ||
|
||
// 4 = | ||
let string = "esto es un string"; | ||
let numEntero = 1; | ||
let numDecimal = 1.5; | ||
let booleanTrue = true; | ||
let booleanFalse = false; | ||
let nulo = null; | ||
|
||
let object = { | ||
nombre: "Joaquin", | ||
apellido: "Lopez" | ||
}; | ||
|
||
//5 = | ||
let helloWorld = "¡Hola, Javascript!"; | ||
console.log(helloWorld); | ||
|
||
|
||
|