Advertisement
Guest User

Untitled

a guest
Aug 21st, 2019
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. # Eloquent JavaScript Summaries
  2.  
  3. ### Values, Types, and Operators
  4.  
  5. * How to declare four types of values
  6. * Conditional operators
  7.  
  8. ### Program Structure
  9.  
  10. * Different types of control flow loops
  11. * Introduction to bindings and functions
  12.  
  13. ### Functions
  14.  
  15. * Difference between function value and a function
  16. * Scopes for different bindings
  17. * Functions help organize a program and count down repeatable code
  18.  
  19. ### Data Structures: Objects and Arrays
  20.  
  21. * Objects and arrays
  22. * Most values in JavaScript have properties, the exceptions being null and undefined.
  23. * There are some named properties in arrays
  24.  
  25. ### The Secret Life of Objects
  26.  
  27. * Prototypes act as if they have properties they don’t have as long as their prototype has that property
  28. * Constructors can be used with the new operator to create new objects
  29. * Getters and setters to secretly call methods every time an object’s property is accessed. Static methods are methods stored in a class’s constructor, rather than its prototype
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement