-
Notifications
You must be signed in to change notification settings - Fork 8
Fun with Javascript
cloud-book edited this page Feb 18, 2015
·
1 revision
- como depurar/probar
- Variables (num,str,bool,array,obj,null,undefined)
- All primitive types except null and undefined are treated as objects.
- Scope
- conversion entre tipos (parseInt,parseFloat)
- Definicion en multiples linias
- methods del array
- Comparadores
- control de flujo
- for
- forEach
- for in
- if
- label
- crear elementos en html
- funciones y argumentos
- valores por defecto
- sobrecarga de metodos
- punteros
- copiar objetos
- Creacion de funciones mediante Function
- eval
- definir funciones y ejecutarlas inmediatamente
- arguments
- objetos
- creacion
- metodos
- herencia
- this - self
- . []
- getter y setter
- dom
- eventos
- JSON
- stringify
- parse
- Exceptions
- throw
- try...catch
- delete
- instanceOf
- hasOwnProperty
- new RegExp
- Clousures
- Mas clousures