- Object-Oriented JavaScript(Second Edition)
- Stoyan Stefanov Kumar Chetan Sharma
- 1144字
- 2021-08-13 16:19:25
Preface
This is the second edition of the highly rated book Object-Oriented JavaScript by Stoyan Stefanov, Packt Publishing. After the release of the first edition, in the last five years, JavaScript has moved from being mostly used in browsers for client-side technologies to being used even on server side. This edition explores the "language side" of JavaScript. The stress is on the standards part of the language. The book talks about ECMA Script, Object-Oriented JS, patterns, prototypal inheritance, and design patterns.
The book doesn't assume any prior knowledge of JavaScript and works from the ground up to give you a thorough understanding of the language. People who know the language will still find it useful and informative. Exercises at the end of the chapters help you assess your understanding.
What this book covers
Chapter 1, Object-oriented JavaScript, talks briefly about the history, present, and future of JavaScript, and then moves on to explore the basics of object-oriented programming (OOP) in general. You then learn how to set up your training environment (Firebug) in order to dive into the language on your own, using the book examples as a base.
Chapter 2, Primitive Data Types, Arrays, Loops, and Conditions, discusses the language basics: variables, data types, primitive data types, arrays, loops, and conditionals.
Chapter 3, Functions, covers functions that JavaScript uses, and here you learn to master them all. You also learn about the scope of variables and JavaScript's built-in functions. An interesting, but often misunderstood feature of the language—closures—is demystified at the end of the chapter.
Chapter 4, Objects, talks about objects, how to work with properties and methods, and the various ways to create your objects. This chapter also talks about built-in objects such as Array, Function, Boolean, Number, and String.
Chapter 5, Prototype, is dedicated to the all-important concept of prototypes in JavaScript. It also explains how prototype chain works, hasOwnProperty()
, and some gotchas of prototypes.
Chapter 6, Inheritance, discusses how inheritance works. This chapter also talks about a method to create subclasses like other classic languages.
Chapter 7, The Browser Environment, is dedicated to browsers. This chapter also covers BOM (Browser Object Model), DOM (W3C's Document Object Model), browser events, and AJAX.
Chapter 8, Coding and Design Patterns, dives into various unique JavaScript coding patterns, as well as several language-independent design patterns, translated to JavaScript from the Book of Four, the most influential work of software design patterns. The chapter also discusses JSON.
Appendix A, Reserved Words, lists the reserved words in JavaScript.
Appendix B, Built-in Functions, is a reference of built-in JavaScript functions together with sample uses.
Appendix C, Built-in Objects, is a reference that provides details and examples of the use of every method and property of every built-in object in JavaScript.
Appendix D, Regular Expressions, is a regular expressions pattern reference.
Appendix E, Answers to Exercise Questions, has solutions for all the exercises mentioned at the end of the chapters.
You can download this Appendix from http://www.packtpub.com/sites/default/files/downloads/3127OT_Answers_to_Exercise_Questions.pdf.
What you need for this book
You need a modern browser—Google Chrome or Firefox are recommended—and an optional Node.js setup. The latest version of Firefox comes with web developer tools, but Firebug is highly recommended. To edit JavaScript you can use any text editor of your choice.
Who this book is for
This book is for anyone who is starting to learn JavaScript or who knows JavaScript but isn't very good at the object-oriented part of it.
Conventions
In this book, you will find a number of styles of text that distinguish between different kinds of information. Here are some examples of these styles, and an explanation of their meaning.
Code words in text are shown as follows: "If you want to be sure, you can check the cancellable
property of the event object".
A block of code will be set as follows:
var a; var thisIsAVariable; var _and_this_too; var mix12three;
When we wish to draw your attention to an output of a code block, the relevant lines or items will be shown in bold:
> var case_matters = 'lower'; > var CASE_MATTERS = 'upper'; > case_matters; "lower" > CASE_MATTERS; "upper"
Any command-line input or output is written as follows:
alias jsc='/System/Library/Frameworks/JavaScriptCore.framework/Versions/Current/Resources/jsc'
New terms and important words are introduced in a bold-type font. Words that you see on the screen, in menus or dialog boxes for example, appear in our text like this: "If the user clicks on Cancel, the preventDefault()
method is called".
Note
Warnings or important notes appear in a box like this.
Tip
Tips and tricks appear like this.
Reader feedback
Feedback from our readers is always welcome. Let us know what you think about this book—what you liked or may have disliked. Reader feedback is important for us to develop titles that you really get the most out of.
To send us general feedback, simply send an e-mail to <feedback@packtpub.com>
, and mention the book title via the subject of your message.
If there is a topic that you have expertise in and you are interested in either writing or contributing to a book, see our author guide on www.packtpub.com/authors.
Customer support
Now that you are the proud owner of a Packt book, we have a number of things to help you to get the most from your purchase.
Errata
Although we have taken every care to ensure the accuracy of our content, mistakes do happen. If you find a mistake in one of our books—maybe a mistake in the text or the code—we would be grateful if you would report this to us. By doing so, you can save other readers from frustration and help us improve subsequent versions of this book. If you find any errata, please report them by visiting http://www.packtpub.com/submit-errata, selecting your book, clicking on the errata submission form link, and entering the details of your errata. Once your errata are verified, your submission will be accepted and the errata will be uploaded on our website, or added to any list of existing errata, under the Errata section of that title. Any existing errata can be viewed by selecting your title from http://www.packtpub.com/support.
Piracy
Piracy of copyright material on the Internet is an ongoing problem across all media. At Packt, we take the protection of our copyright and licenses very seriously. If you come across any illegal copies of our works, in any form, on the Internet, please provide us with the location address or website name immediately so that we can pursue a remedy.
Please contact us at <copyright@packtpub.com>
with a link to the suspected pirated material.
We appreciate your help in protecting our authors, and our ability to bring you valuable content.
Questions
You can contact us at <questions@packtpub.com>
if you are having a problem with any aspect of the book, and we will do our best to address it.
- Django:Web Development with Python
- Cassandra Design Patterns(Second Edition)
- 深入理解Java7:核心技術(shù)與最佳實踐
- Mastering Kali Linux for Web Penetration Testing
- 學(xué)Python也可以這么有趣
- Exploring SE for Android
- ASP.NET求職寶典
- Mastering Concurrency in Python
- After Effects CC案例設(shè)計與經(jīng)典插件(視頻教學(xué)版)
- C語言程序設(shè)計與應(yīng)用實驗指導(dǎo)書(第2版)
- Java Web動態(tài)網(wǎng)站開發(fā)(第2版·微課版)
- Android應(yīng)用開發(fā)攻略
- 測試工程師Python開發(fā)實戰(zhàn)
- 匯編語言程序設(shè)計
- Getting Started with SpriteKit