-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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 #6544 from VictorMDev24/main
##00-javascript primer ejercicio
- Loading branch information
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
25 changes: 25 additions & 0 deletions
25
Roadmap/00 - SINTAXIS, VARIABLES, TIPOS DE DATOS Y HOLA MUNDO/javascript/victorMDev24.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,25 @@ | ||
//https://developer.mozilla.org/es/docs/Web/JavaScript/Guide | ||
|
||
//comentario de una linea | ||
|
||
/* | ||
comentariuo | ||
de | ||
varias lineas | ||
*/ | ||
|
||
const constante = "inamovible" | ||
let palabraclave ="alcance de bloque" | ||
var variable ="igual que let pero no es buena practica usarla" | ||
|
||
let numero = 1; | ||
let numeroGrande = 98987562335554n; | ||
let nombre = "hola mundo"; | ||
let verdadero = true; | ||
let falso = false; | ||
let undef = undefined; | ||
let nulo = null; | ||
let miSimbol = Symbol("key") | ||
|
||
|
||
console.log(Hola,javascript) |