Skip to content

Commit

Permalink
Merge pull request #6544 from VictorMDev24/main
Browse files Browse the repository at this point in the history
##00-javascript primer ejercicio
  • Loading branch information
Roswell468 authored Oct 12, 2024
2 parents 69ea830 + 7d594df commit c568464
Showing 1 changed file with 25 additions and 0 deletions.
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)

0 comments on commit c568464

Please sign in to comment.