Cargando…

Simplifying JavaScript : writing modern JavaScript with ES5, ES6, and beyond /

Annotation

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Morgan, Joe (Autor)
Formato: Electrónico eBook
Idioma:Inglés
Publicado: Raleigh, North Carolina : The Pragmatic Bookshelf, 2018.
Colección:Pragmatic programmers.
Temas:
Acceso en línea:Texto completo (Requiere registro previo con correo institucional)

MARC

LEADER 00000cam a2200000 i 4500
001 OR_on1038260057
003 OCoLC
005 20231017213018.0
006 m o d
007 cr cnu---unuuu
008 180601s2018 ncu ob 000 0 eng d
040 |a N$T  |b eng  |e rda  |e pn  |c N$T  |d N$T  |d EBLCP  |d YDX  |d OCLCO  |d UMI  |d STF  |d OH1  |d TEFOD  |d OCLCF  |d TOH  |d DEBBG  |d CEF  |d CNCEN  |d G3B  |d S9I  |d UAB  |d VT2  |d C6I  |d OCLCQ  |d OCLCO  |d NZAUC  |d OCLCQ  |d OCLCO 
019 |a 1039066311  |a 1039693436  |a 1041187709 
020 |a 9781680506068  |q (electronic bk.) 
020 |a 1680506064  |q (electronic bk.) 
020 |a 9781680506051  |q (electronic bk.) 
020 |a 1680506056  |q (electronic bk.) 
020 |z 9781680502886 
020 |z 1680502883 
029 1 |a AU@  |b 000067101694 
035 |a (OCoLC)1038260057  |z (OCoLC)1039066311  |z (OCoLC)1039693436  |z (OCoLC)1041187709 
037 |a CL0500000973  |b Safari Books Online 
037 |a 8655E5AE-43F0-49DB-AC64-9B852DB3433B  |b OverDrive, Inc.  |n http://www.overdrive.com 
050 4 |a QA76.73.J38 
072 7 |a COM  |x 051280  |2 bisacsh 
082 0 4 |a 005.13/3  |2 23 
049 |a UAMI 
100 1 |a Morgan, Joe,  |e author. 
245 1 0 |a Simplifying JavaScript :  |b writing modern JavaScript with ES5, ES6, and beyond /  |c by Joe Morgan. 
264 1 |a Raleigh, North Carolina :  |b The Pragmatic Bookshelf,  |c 2018. 
300 |a 1 online resource 
336 |a text  |b txt  |2 rdacontent 
337 |a computer  |b c  |2 rdamedia 
338 |a online resource  |b cr  |2 rdacarrier 
347 |a data file 
490 1 |a The Pragmatic programmers 
588 0 |a Online resource; title from PDF title page (EBSCO, viewed June 15, 2018) 
505 0 |a Cover; Table of Contents; Introduction; How To Use This Book; Whom This Book Is For; Online Resources; Acknowledgments; 1. Signal Intention with Variable Assignment; Tip 1. Signal Unchanging Values with const; Tip 2. Reduce Scope Conflicts with let and const; Tip 3. Isolate Information with Block Scoped Variables; Tip 4. Convert Variables to Readable Strings with Template Literals; 2. Manage Data Collections with Arrays; Tip 5. Create Flexible Collections with Arrays; Tip 6. Check Existence in an Array with Includes(); Tip 7. Mold Arrays with the Spread Operator 
505 8 |a Tip 8. Avoid Push Mutations with the Spread OperatorTip 9. Avoid Sort Confusion with the Spread Operator; 3. Maximize Code Clarity with Special Collections; Tip 10. Use Objects for Static Key-Value Lookups; Tip 11. Create Objects Without Mutations Using Object.assign(); Tip 12. Update Information with Object Spread; Tip 13. Update Key-Value Data Clearly with Maps; Tip 14. Iterate Over Key-Value Data with Map and the Spread Operator; Tip 15. Create Maps Without Side Effects; Tip 16. Keep Unique Values with Set; 4. Write Clear Conditionals; Tip 17. Shorten Conditionals with Falsy Values 
505 8 |a Tip 18. Check Data Quickly with the Ternary OperatorTip 19. Maximize Efficiency with Short Circuiting; 5. Simplify Loops; Tip 20. Simplify Looping with Arrow Functions; Tip 21. Write Shorter Loops with Array Methods; Tip 22. Create Arrays of a Similar Size with map(); Tip 23. Pull Out Subsets of Data with filter() and find(); Tip 24. Apply Consistent Actions with forEach(); Tip 25. Combine Methods with Chaining; Tip 26. Transform Array Data with reduce(); Tip 27. Reduce Loop Clutter with for ... in and for ... each; 6. Clean Up Parameters and Return Statements; Tip 28. Create Default Parameters 
505 8 |a Tip 29. Access Object Properties with DestructuringTip 30. Simplify Key-Value Assignment; Tip 31. Pass a Variable Number of Arguments with the Rest Operator; 7. Build Flexible Functions; Tip 32. Write Functions for Testability; Tip 33. Reduce Complexity with Arrow Functions; Tip 34. Maintain Single Responsibility Parameters with Partially Applied Functions; Tip 35. Combine Currying and Array Methods for Partial Application; Tip 36. Prevent Context Confusion with Arrow Functions; 8. Keep Interfaces Clear with Classes; Tip 37. Build Readable Classes; Tip 38. Share Methods with Inheritance 
505 8 |a Tip 39. Extend Existing Prototypes with ClassTip 40. Simplify Interfaces with get and set; Tip 41. Create Iterable Properties with Generators; Tip 42. Resolve Context Problems with Bind(); 9. Access External Data; Tip 43. Retrieve Data Asynchronously with Promises; Tip 44. Create Clean Functions with Async/Await; Tip 45. Make Simple AJAX Calls with Fetch; Tip 46. Maintain State Over Time with LocalStorage; 10. Gather Related Files with Component Architecture; Tip 47. Isolate Functionality with Import and Export; Tip 48. Leverage Community Knowledge with npm 
504 |a Includes bibliographical references. 
520 8 |a Annotation  |b The best modern JavaScript is simple, readable, and predictable. Learn to write modern JavaScript not by memorizing a list of new syntax, but with practical examples of how syntax changes can make code more expressive. Starting from variable declarations that communicate intention clearly, see how modern principles can improve all parts of code. Incorporate ideas with curried functions, array methods, classes, and more to create code that does more with less while yielding fewer bugs. It's time to write JavaScript code that's clean and exprssive. Modern JavaScript is simpler and more predictable and readable than ever. Discover how to write better code with clear examples using principles that show how updated syntax can make code better with fewer bugs. Starting from the ground up, learn new syntax (or how to reuse older syntax) to transform code from clunky bug-susceptible scripts to clear and elegant programs that are easy to read and easy to extend. Create a foundation for readable code with simple variable declarations that reduce side effects and subtle bugs. Select collections with clear goals instead of defaulting to objects or arrays. See how to simplify iterations from complex loops to single line array methods. Master techniques for writing flexible and solid code ranging from high-order functions, to reusableclasses, to patterns for architecting large applications creating applications that will last while through rounds of refactoring and changing requirements. The best part is there's no need to read this book straight through. Jump around and incorporate new functionality at will. Most importantly, understand not just what the new syntax is, but when and how to use it. Start writing better code from the first page. What You Need:For the best experience, have the latest version of Node installed (at least version 7). You can test most examples in the console of Chrome or other modern web browser. If you'd like to run the tests, you'll also need to install the latest version of Node Package Manager (npm). 
590 |a O'Reilly  |b O'Reilly Online Learning: Academic/Public Library Edition 
650 0 |a JavaScript (Computer program language) 
650 6 |a JavaScript (Langage de programmation) 
650 7 |a COMPUTERS  |x Programming Languages  |x Java.  |2 bisacsh 
650 7 |a JavaScript (Computer program language)  |2 fast 
776 0 8 |i Print version:  |a Morgan, Joe.  |t Simplifying JavaScript : Writing Modern JavaScript with ES5, ES6, and Beyond.  |d Sebastopol : Pragmatic Programmers, LLC, The, ©2018  |z 9781680502886 
830 0 |a Pragmatic programmers. 
856 4 0 |u https://learning.oreilly.com/library/view/~/9781680506044/?ar  |z Texto completo (Requiere registro previo con correo institucional) 
938 |a ProQuest Ebook Central  |b EBLB  |n EBL5406361 
938 |a EBSCOhost  |b EBSC  |n 1822670 
938 |a YBP Library Services  |b YANK  |n 15465733 
994 |a 92  |b IZTAP