Mastering JavaScript : explore and master modern JavaScript techniques in order to build large-scale web applications /
Annotation
Clasificación: | Libro Electrónico |
---|---|
Autor principal: | |
Formato: | Electrónico eBook |
Idioma: | Inglés |
Publicado: |
Birmingham, UK :
Packt Publishing,
2016.
|
Colección: | Community experience distilled.
|
Temas: | |
Acceso en línea: | Texto completo Texto completo |
MARC
LEADER | 00000cam a2200000 i 4500 | ||
---|---|---|---|
001 | EBSCO_ocn939400422 | ||
003 | OCoLC | ||
005 | 20231017213018.0 | ||
006 | m o d | ||
007 | cr unu|||||||| | ||
008 | 160215s2016 enka o 001 0 eng d | ||
040 | |a UMI |b eng |e rda |e pn |c UMI |d OCLCF |d TEFOD |d N$T |d TEFOD |d N$T |d DEBBG |d C6I |d MNW |d YDXCP |d IDEBK |d DEBSZ |d MNW |d OCLCQ |d CEF |d NLE |d UKMGB |d MQY |d AGLDB |d IGB |d RDF |d OCLCO |d NZAUC |d OCLCQ |d QGK | ||
015 | |a GBB6G3450 |2 bnb | ||
016 | 7 | |a 018010514 |2 Uk | |
019 | |a 936624915 |a 936961751 |a 1259056686 | ||
020 | |a 9781785286285 |q (electronic bk.) | ||
020 | |a 1785286285 |q (electronic bk.) | ||
020 | |z 9781785281341 | ||
020 | |z 1785281348 | ||
029 | 1 | |a AU@ |b 000057235872 | |
029 | 1 | |a DEBBG |b BV043968911 | |
029 | 1 | |a DEBSZ |b 47387542X | |
029 | 1 | |a DEBSZ |b 485794233 | |
029 | 1 | |a GBVCP |b 882848747 | |
029 | 1 | |a UKMGB |b 018010514 | |
035 | |a (OCoLC)939400422 |z (OCoLC)936624915 |z (OCoLC)936961751 |z (OCoLC)1259056686 | ||
037 | |a CL0500000716 |b Safari Books Online | ||
037 | |a C307C7C8-A8B7-47FD-AA79-8E5ABE26E3DB |b OverDrive, Inc. |n http://www.overdrive.com | ||
050 | 4 | |a QA76.73.J39 | |
072 | 7 | |a COM |x 051260 |2 bisacsh | |
082 | 0 | 4 | |a 005.2762 |2 23 |
049 | |a UAMI | ||
100 | 1 | |a Antani, Ved, |e author. | |
245 | 1 | 0 | |a Mastering JavaScript : |b explore and master modern JavaScript techniques in order to build large-scale web applications / |c Ved Antani. |
246 | 3 | 0 | |a Explore and master modern JavaScript techniques in order to build large-scale web applications |
264 | 1 | |a Birmingham, UK : |b Packt Publishing, |c 2016. | |
300 | |a 1 online resource (1 volume) : |b illustrations | ||
336 | |a text |b txt |2 rdacontent | ||
337 | |a computer |b c |2 rdamedia | ||
338 | |a online resource |b cr |2 rdacarrier | ||
347 | |a text file | ||
490 | 1 | |a Community experience distilled | |
588 | 0 | |a Online resource; title from cover (Safari, viewed February 12, 2016). | |
500 | |a Includes index. | ||
520 | 8 | |a Annotation |b Explore and master modern JavaScript techniques in order to build large-scale web applicationsAbout This Book Write powerful code with the high-level functions that JavaScript offers Test and debug issues with JavaScript code using various modern mechanisms Offers an expert's eye on the latest ES6 features and how these advanced tasks fit together in JavaScript as a wholeWho This Book Is ForThis book is ideal for web developers who are looking to master modern JavaScript concepts and design principles. You should already have an intermediate level of JavaScript knowledge before starting this book. What You Will Learn Get a run through of the basic JavaScript language constructs Get familiar with the Functions and Closures of JavaScript Explore Regular Expressions in JavaScript Code using the powerful object-oriented feature in JavaScript Test and debug your code using JavaScript strategies Master DOM manipulation, cross-browser strategies, and ES6 Understand the basic concurrency constructs in Javascript and best performance strategies Learn to build scalable server application in JavaScript using Node.jsIn DetailJavaScript is a high-level, dynamic, untyped, lightweight, and interpreted programming language. Along with HTML and CSS, it is one of the three essential technologies of World Wide Web content production, and is an open source and cross-platform technology. The majority of websites employ JavaScript, and it is well supported by all modern web browsers without plugins. However, the JavaScript landscape has changed dramatically in recent years, and you need to adapt to the new world of JavaScript that people now expect. Mastering modern JavaScript techniques and the toolchain are essential to develop web-scale applications. Mastering JavaScript will be your companion as you master JavaScript and build innovative web applications. To begin with, you will get familiarized with the language constructs and how to make code easy to organize. You will gain a concrete understanding of variable scoping, loops, and best practices on using types and data structures, as well as the coding style and recommended code organization patterns in JavaScript. The book will also teach you how to use arrays and objects as data structures. You will graduate from intermediate-level skills to advanced techniques as you come to understand crucial language concepts and design principles. You will learn about modern libraries and tools so you can write better code. By the end of the book, you will understand how reactive JavaScript is going to be the new paradigm. Style and approachThis is a comprehensive guide with a clear focus on practical use cases and patterns. Each chapter consists of best practices, useful advice, and a bunch of easy-to-follow examples that will build up your skills as you advance through the book. | |
505 | 0 | |a Cover; Copyright; Credits; About the Author; About the Reviewer; www.PacktPub.com; Table of Contents; Preface; Chapter 1: JavaScript Primer; A little bit of history; How to use this book; Hello World; An overview of JavaScript; Comments; Variables; Constants; Number; String; Undefined values; Booleans; The instanceof operator; Date objects; The + operator; The ++ and -- operators; Boolean operators; Equality; JavaScript types; Automatic semicolon insertion; JavaScript style guide; Whitespaces; Parentheses, line breaks, and braces; Quotes; End of lines and empty lines; Type checking | |
505 | 8 | |a Type castingConditional evaluation; Naming; The eval() method is evil; The strict mode; Running JSHint; Summary; Chapter 2: Functions, Closures, and Modules; A function literal; A function declaration; Functions as data; Scoping; Global scope; Local scope; Function-level scope versus block-level scope; Inline function expressions; Block scopes; Function declarations versus function expressions; The arguments parameter; The this parameter; Invocation as a function; Invocation as a method; Invocation as a constructor; Invocation using apply() and call() methods; Anonymous functions | |
505 | 8 | |a Anonymous functions while creating an objectAnonymous functions while creating a list; Anonymous functions as a parameter to another function; Anonymous functions in conditional logic; Closures; Timers and callbacks; Private variables; Loops and closures; Modules; Stylistic considerations; Summary; Chapter 3: Data Structures and Manipulation; Regular expressions; Exact match; Match from a class of characters; Repeated occurrences; Alternatives -- OR; Beginning and end; Backreferences; Greedy and lazy quantifiers; Arrays; Maps; Sets; A matter of style; Summary | |
505 | 8 | |a Chapter 4: Object-Oriented JavaScriptUnderstanding objects; Behavior of JavaScript objects; Prototypes; Instance properties versus prototype properties; Inheritance; Getters and setters; Summary; Chapter 5: JavaScript Patterns; Design patterns; The namespace pattern; The module pattern; ES6 modules; The factory pattern; The mixin pattern; The decorator pattern; The observer pattern; JavaScript Model-View-* patterns; Model-View-Controller; Models; Views; Controllers; The Model-View-Presenter pattern; Model-View-ViewModel; Summary; Chapter 6: Testing and Debugging; Unit testing | |
505 | 8 | |a Test-driven developmentBehavior-driven development; JavaScript debugging; Syntax errors; Using strict; Runtime exceptions; Console.log and asserts; Chrome DevTools; Summary; Chapter 7: ECMAScript 6; Shims or polyfills; Transpilers; ES6 syntax changes; Block scoping; Default parameters; Spread and rest; Destructuring; Object literals; Template literals; Maps and Sets; Symbols; Iterators; For.of loops; Arrow functions; Summary; Chapter 8: DOM Manipulation and Events; DOM; Accessing DOM elements; Accessing specific nodes; Chaining; Traversal and manipulation; Working with browser events | |
590 | |a eBooks on EBSCOhost |b EBSCO eBook Subscription Academic Collection - Worldwide | ||
590 | |a O'Reilly |b O'Reilly Online Learning: Academic/Public Library Edition | ||
650 | 0 | |a JavaScript (Computer program language) | |
650 | 0 | |a Web applications. | |
650 | 6 | |a JavaScript (Langage de programmation) | |
650 | 6 | |a Applications Web. | |
650 | 7 | |a COMPUTERS |x Programming Languages |x JavaScript. |2 bisacsh | |
650 | 7 | |a JavaScript (Computer program language) |2 fast |0 (OCoLC)fst00982071 | |
650 | 7 | |a Web applications. |2 fast |0 (OCoLC)fst01895855 | |
776 | 0 | 8 | |i Erscheint auch als: |n Druck-Ausgabe |
830 | 0 | |a Community experience distilled. | |
856 | 4 | 0 | |u https://ebsco.uam.elogim.com/login.aspx?direct=true&scope=site&db=nlebk&AN=1163841 |z Texto completo |
856 | 4 | 0 | |u https://learning.oreilly.com/library/view/~/9781785281341/?ar |z Texto completo |
938 | |a EBSCOhost |b EBSC |n 1163841 | ||
938 | |a ProQuest MyiLibrary Digital eBook Collection |b IDEB |n cis33796822 | ||
938 | |a YBP Library Services |b YANK |n 12831303 | ||
994 | |a 92 |b IZTAP |