This book is not about JavaScript design patterns or implementing an object-oriented paradigm with JavaScript code. It was not written to distinguish the good features of the JavaScript language from the bad. It is not meant to be a complete reference guide. It is not targeted at people new to programming or those completely new to JavaScript. Nor is this a cookbook of JavaScript recipes. Those books have been written.
Table of contents
- Introduction
- Why JavaScript
- More code, less words
- Color-coding Conventions
- JavaScript Objects
- Creating objects
- JavaScript constructors construct and return object instances
- The JavaScript native/built-in object constructors
- Instantiating constructors using the new operator
- The primitive values null, undefined, 'string', , true, and false are not objects
- How primitive values are stored/copied in JavaScript
- Primitive values are equal by value
- The string, number, and boolean primitive values act like objects when used like objects
- Complex (aka composite) values
- How complex values are stored/copied in JavaScript
- Complex objects are equal by reference
- Complex objects have dynamic properties
- The typeof operator used on primitive and complex values
- Dynamic Properties allow for mutable objects
- All constructor instances have constructor properties that point to their constructor function
- Verify that an object is an instance of a particular constructor function
- An instance created from a constructor can have its own independent properties (aka instance properties)
- The semantics between 'JavaScript objects' vs 'Object() objects'
- Chapter - Working with Objects and Properties
- Complex objects can contain most of the JavaScript values as properties
- Encapsulating complex objects in a programmatically beneficial way
- Getting/setting/updating an object's properties using dot notation or bracket notation
- Deleting object properties
- How references to object properties are resolved
- Using has Own Property, verify that an object property is not from the prototype chain
- Checking if an object contains a given property using the in operator
- Enumerate (loop over) an object’s properties using the for in loop
- Host objects vs native objects
- Chapter - Object()
- Conceptual overview of using Object() objects
- Chapter - Function()
- Conceptual overview of using Function() objects
- Function() parameters
- Function() properties and methods
- Function object instance properties and methods
- Functions always return a value
- Functions are first-class citizens (not just syntax, but values)
- Passing parameters to a function
- The argument scallee property
- Redefining function parameters
- Anonymous functions
- Self-invoking function expression
- Self-invoking anonymous function statements
- Functions can be nested
- Invoking function statements before they are defined (aka function hoisting)
- A function can call itself (aka recursion)
- Conceptual overview of the prototype chain
- Why care about the prototype property?
- Prototype is standard on all Function() instances
- The default prototype property is an Object() object
- Last stop in the prototype chain is Object prototype
- The prototype chain returns the first property match it finds in the chain
Others related eBooks about Advanced javascript
Get started with HTML5
This tutorial aim to provide a gentle introduction to these amazing new web technologies, and to show you some cool ways of incorporating them into your websites....
Node.js tutorial pdf
...
AngularDart Succinctly
Download free course AngularDart Succinctly, pdf file on 114 pages by by Ed Freitas....
Introduction to ReactJS
Learn the basics of JavaScript and DOM. Develop application user interfaces with ReactJS and Flux. Learn how JSX works. Master the Framework in a Web application environment....
CSS tutorial for professionals
Download free CSS tutorial course in PDF, training file in 56 chapters and 244 pages. Free unaffiliated ebook created from Stack OverFlow contributor....
Getting started with WordPress
Download free WordPress tutorial course in PDF, training file in 72 chapters and 208 pages. Free unaffiliated ebook created from Stack OverFlow contributor....
JQuery tutorial for professionals
Download free JQuery tutorial course in PDF, training file in 18 chapters and 67 pages. Free unaffiliated ebook created from Stack OverFlow contributor....
jQuery Fundamentals
With this unique, project-oriented book, author Rebecca Murphey teaches even the most novice of JavaScript users how to quickly get started utilizing the JavaScript jQuery Library to decrease the amount of code that needs to be written and tested. A four-color code syntax highlighting system provi...
Essential HTML5 Canvas
This book written to provide clear and concise explanation of topics for programmers both starting to learn the HTML Canvas as well as those diving in more complex topics. Most examples are linked to online playground that allows you to change the code and re-run it....
Learn Ruby on Rails, PDF Tutorial
This is a PDF tutorial about Ruby on Rails under 39 pages by Bhaskar Vaish, you will learn how to build web application using a Rails framework application....