Show Menu
Cheatography

Java Script Avanzado Cheat Sheet (DRAFT) by

hhhhnjkkkkmkmklmklmkmkmkmllkmlkm

This is a draft cheat sheet. It is a work in progress and is not finished yet.

Variables

VAR
var nombre =' '
Pueden ser modifi­cadas y redecl­aradas
Se inicializa con "­und­efi­ned­"
Se pueden declarar sin inicia­lizar
Ambito global
LET
function nombre(){ let variable = ' '}
Pueden ser modifi­cadas y no redecl­aradas
Si se declara y no se inicializa no tiene valor por defecto
Se pueden declarar sin inicia­lizar
Es a nivel de bloques
CONST
const nombres = [' ', ' ']
Almacena variables constantes
Si se declara y no se inicializa no tiene valor
Obliga­torio inicia­liz­arlas al declar­arlas
Es a nivel de bloques
 

Strings

Template Strings
consol­e.log ('La persona' ${nombre} de ${pais}')

Arrow Functions

map
Espera el nombre de una variable
array.n­ap­(fu­nct­ion­(no­mbre))

POO

Clases
constr­uct­or(­par­áme­tros){ this.p­ara­metro1 = parame­ter;, ...
Get/Set
getAtr­ibuto() { return this.a­tri­buto; }
setAtr­ibu­to(­atr­ibuto) { this.a­tributo = atributo; }
toString()
toString() { return this.g­etA­tri­buto(); }
equals()