Cargando…

JavaScript patterns /

What's the best approach for developing an application with JavaScript? This book helps you answer that question with numerous JavaScript coding patterns and best practices. If you're an experienced developer looking to solve problems related to objects, functions, inheritance, and other l...

Descripción completa

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Stefanov, Stoyan
Formato: Electrónico eBook
Idioma:Inglés
Publicado: Sebastopol, CA : O'Reilly, ©2010.
Temas:
Acceso en línea:Texto completo (Requiere registro previo con correo institucional)
Tabla de Contenidos:
  • Table of Contents; Preface; Target Audience; Conventions Used in This Book; Using Code Examples; Safari® Books Online; How to Contact Us; Acknowledgments; Credits; Reading; Chapter 1. Introduction; Patterns; JavaScript: Concepts; Object-Oriented; No Classes; Prototypes; Environment; ECMAScript 5; JSLint; The Console; Chapter 2. Essentials; Writing Maintainable Code; Minimizing Globals; The Problem with Globals; Side Effects When Forgetting var; Access to the Global Object; Single var Pattern; Hoisting: A Problem with Scattered vars; for Loops; for-in Loops.