Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Desarrollo FrontEnd con JavaScript #01

Desarrollo FrontEnd con JavaScript #01

Gustavo Leon

January 30, 2013
Tweet

More Decks by Gustavo Leon

Other Decks in Programming

Transcript

  1. No solo es jQuery Single-page web apps Mobile apps Web

    applications RIAs HTML 5 JavaScript CSS3 Patrones de diseño
  2. Temas JavaScript: Objetos, funciones, Prototype, patrones, method chaining, Testing CSS3:

    Transiciones, Transformaciones, Animaciones HTML5 APIs: LocalStorage, Application Cache, Online events, History API, Web Sockets, File API jQuery: Promises, Deferred Object Backbone.js: Aplicaciones MVC, Servicios REST, JSON Models, Collections, Views, Routers.
  3. Arrays • push – agrega elementos al final • pop

    – elimina el último elemento • slice – devuelve un nuevo array con los elementos dentro de un rango • splice – elimina y agrega elementos en una posición definida • indexOf – devuelve el índice del elemento • shift – elimina el primer elemento • unshift – agrega elementos al inicio
  4. Objetos • hasOwnProperty – verifica si un atributo existe en

    el objeto. • for .. in – similar a for, no necesita saber el tamaño del array o del objeto