Oreilly - The Complete Javascript Course: Build a Professional Project - 9781789341539
Oreilly - The Complete Javascript Course: Build a Professional Project
by Issam | Publisher: Packt Publishing | Release Date: May 2018 | ISBN: 9781789341539


OO/functional programming, DOM, EC, hoisting, scope chain, closures, encapsulation, inheritance, and modulesAbout This VideoBy the end of the course, you will have built a full professional Javascript project from scratch: a fully-functional typing test application that can test users typing speed and generate a PDF certificate at the end of the test.In DetailThis course has been designed using a robust structure that will take you from zero skills to a job-ready Javascript developer. It is the most comprehensive Javascript course in the market. It contains 15 highly-structured sections distributed over 26 hours of content and 220 lectures, including crystal clear presentations, coding exercises, and a full professional real-life project: This course covers everything you need to stand out when applying for a JS developer job. You will learn the basicsincluding variables and data types, conditional and looping, functions part 1, (first class functions, statements vs expressions, immediately invoked function expressions, and so on). You'll study objects 1, including: object literals, prototypes, equality, constructors, JSON, DOM (event handling, the event object, debouncing, event propagation, event delegation, single threaded JavaScript, an so on).Then you'll move to advanced concepts such as execution context, hoisting, 'this', scope chain, closures(including updating outer variables, iterations, closures with event loops); objects 2 (encapsulation and information hiding includingusing closures to hide information, using IIFE to create private static properties and methods); objects 3 (inheritance and prototype chain, including class augmentation and object cloning); singleton and modular design patterns (including: name-spacing and on) and functions 2, including the 'arguments' property,function,prototype, call and so on.
  1. Chapter 1 : Introduction
    • Promo 00:02:35
    • Introduction to JavaScript 00:11:19
    • Install Chrome & Brackets 00:02:44
    • Your first JavaScript Program 00:10:05
  2. Chapter 2 : Variables & Data Types
    • Introduction 00:01:55
    • Create Variables 00:09:25
    • Rules 00:01:59
    • Memory 00:03:04
    • Numbers – Introduction 00:05:06
    • Numbers - Arithmetic Operations 00:04:52
    • Numbers - Operator Precedence 00:05:55
    • Numbers - More Operator / Special Numbers 00:10:32
    • Strings 00:08:33
    • Booleans 00:02:19
    • Booleans - Logical Operators 00:04:01
    • Booleans - Operator Precedence 00:02:08
    • Booleans - Ternary Operator 00:01:57
    • Booleans vs Non Booleans 00:12:06
    • null and undefined 00:03:04
    • Type coercion 00:08:00
    • Objects 00:13:13
    • Arrays 00:02:47
    • Coding Challenge: Help the Cashier – Introduction 00:08:12
    • Coding Challenge: Help the Cashier – Logic 00:05:08
    • Coding Challenge: Help the Cashier - Solution (Part 1) 00:09:18
    • Coding Challenge: Help the Cashier - Solution (Part 2) 00:16:12
  3. Chapter 3 : Conditional and Looping
    • If Statement 00:07:53
    • Switch Statement 00:07:30
    • For Statement 00:12:55
    • while do Statement 00:14:05
    • do while Statement 00:01:49
    • Coding Challenge: Improve your Cashier Code - Part 1 00:01:15
    • Coding Challenge: Improve your Cashier Code - Solution 1 00:05:55
    • Coding Challenge: Improve your Cashier Code - Part 2 00:02:04
    • Coding Challenge: Improve your Cashier Code - Solution 2 00:02:47
  4. Chapter 4 : Functions - Part 1
    • Introduction 00:06:56
    • Return values 00:05:07
    • Pass 'by value' vs 'by reference 00:11:26
    • First class functions 00:11:58
    • Statement vs Expression 00:10:25
    • IIFE: Immediately Invoked Function Expressions 00:06:56
    • An invocation pattern: Recursion 00:09:34
    • Built-in JS Functions 00:08:53
    • Scope 00:14:50
    • Coding Challenge: Is it prime? – Introduction 00:03:42
    • Coding Challenge: Is it prime? – Logic 00:03:24
    • Coding Challenge: Is it prime? – Solution 00:15:48
    • Coding Challenge: Can you count the primes? – Introduction 00:02:26
    • Coding Challenge: Can you count the primes? – Logic 00:02:08
    • Coding Challenge: Can you count the primes? – Solution 00:05:52
  5. Chapter 5 : Objects - Part 1
    • Object literals 00:03:04
    • Dot notation' vs 'Brackets' 00:10:16
    • Constructors - 'new' keyword - 'this' 00:17:21
    • Prototype 00:06:49
    • Equality 00:08:00
    • String Object 00:08:58
    • Date Object (1) 00:17:08
    • Date Object (2) 00:07:44
    • Math Object 00:03:40
    • JSON 00:12:47
    • Array Object 00:04:43
    • Array methods 00:13:26
    • Loop through Arrays using forEach 00:02:44
  6. Chapter 6 : The DOM
    • Learn HTML&CSS (1) 00:12:11
    • Learn HTML&CSS (2) 00:09:34
    • Learn HTML&CSS (3) 00:13:25
    • Learn HTML&CSS (4) 00:11:22
    • Understand the DOM 00:07:22
    • Access DOM elements (1) 00:18:44
    • Access DOM elements (2) 00:06:21
    • Change DOM elements 00:18:53
    • Remove DOM elements 00:06:22
    • Event Handling (1) 00:14:32
    • Event Handling (2) 00:10:57
    • Event object – keys 00:06:36
    • Event object - mouse events 00:13:20
    • Event object - scroll event 00:06:59
    • Event object – focus 00:03:41
    • Event object – preventDefault 00:03:37
    • Single Threaded Javascript 00:05:08
    • Debouncing 00:08:15
    • Event Propagation 00:08:41
    • Event Delegation 00:13:48
    • jQuery 00:19:17
  7. Chapter 7 : Execution Context - Hoisting - 'this'
    • Global Execution Context - 'this' 00:04:09
    • Execution Context - Creation & Hoisting 00:05:09
    • Execution Context – Execution 00:12:54
    • Function declaration overriding variable declaration 00:05:14
  8. Chapter 8 : Scope Chain
    • Introduction 00:04:13
    • Understand the scope chain 00:11:07
  9. Chapter 9 : Closures
    • Understand Closures 00:19:13
    • Update values of outer variables (1) 00:08:02
    • Update values of outer variables (2) 00:04:54
    • Closures with event loops (1) 00:09:43
    • Closures with event loops (2) 00:05:27
    • Iteration Challenge 00:08:22
  10. Chapter 10 : Objects - Part 2: Encapsulation & Information Hiding
    • Why would you hide information? 00:09:03
    • Use closures to hide properties and methods 00:12:42
    • Use IIFE to create private static properties and methods 00:07:10
  11. Chapter 11 : Objects - Part 3: Inheritance & Prototype Chain
    • Understand the prototype (1) 00:05:45
    • Understand the prototype (2) 00:03:48
    • Inheritance&PrototypeChain: __proto__ 00:09:57
    • Inheritance&PrototypeChain: Object.create 00:04:07
    • Inheritance&PrototypeChain: Constructor Inheritance 00:18:22
    • Inheritance&PrototypeChain: extend function 00:06:02
    • Class Augmentation (1) 00:19:22
    • Class Augmentation (2) 00:11:10
    • Object cloning 00:06:56
  12. Chapter 12 : Objects - Part 4: Objects Challenges
    • Challenge: Iteration and hasOwnProperty] 00:07:49
    • Challenge: Iteration using object.keys & forEach 00:08:19
    • Challenge: getPrototypeOf & getOwnPropertyNames 00:08:53
    • Challenge: Climb up the prototype chain 00:16:38
  13. Chapter 13 : Objects - Part 5: Singleton & Module Patterns
    • Namespacing 00:06:06
    • Singleton Pattern 00:03:41
    • Wrap page specific code 00:19:56
    • Modular Design Pattern 00:08:33
  14. Chapter 14 : Functions - Part 2
    • Functions are objects 00:05:43
    • The 'arguments' property 00:08:15
    • Function.prototype.call 00:17:45
    • Function.prototype.apply 00:01:23
    • Function.prototype.bind 00:05:24
  15. Chapter 15 : Typing Test App (Advanced Real Life Professional Project)
    • Introduction 00:03:34
    • Steps Simplified 00:09:47
    • Back to Client Requirements 00:10:17
    • Functional Design 00:04:33
    • Modular Design Pattern 00:08:08
    • Modular Categorization 00:08:47
    • Data Module Structure 00:14:33
    • UI Module Structure 00:18:08
    • Format Current Word Structure 00:11:24
    • Results Calculation Structure 00:06:08
    • Update Time Left – Structure 00:03:23
    • Certificate Module Structure 00:01:12
    • Events Module Structure 00:02:47
    • Words Module Structure 00:01:25
    • Overview of Modules 00:02:46
    • Get ready to Write Code 00:06:52
    • App Skeleton & Decoration (1) 00:19:02
    • App Skeleton & Decoration (2) 00:19:10
    • App Skeleton & Decoration (3) 00:19:47
    • init function (Events Module) 00:09:16
    • Fill the list of Test Words (Data Module) 00:13:33
    • Shuffle an Array 00:13:47
    • Add Random Capitalisation 00:12:07
    • Add Random Punctuation 00:13:25
    • Fill the list of Test Words (1) (UI Module) 00:19:11
    • Fill the list of Test Words (2) (UI Module) 00:18:16
    • Time Initialisation (Data & UI Modules) 00:14:44
    • Move to a New Word (Data Module) 00:17:54
    • Set the Active Word & Format it (UI Module) 00:16:02
    • Type a Character - Event Listener 00:18:47
    • word.prototype.update(value) 00:19:37
    • keydown vs keyup vs keypress vs input Events 00:06:32
    • Format the Active Word (UI Module) 00:19:52
    • Press Space – Event 00:08:58
    • Scroll the Active Word into the Middle of the View 00:10:54
    • Press Enter - Create a Fake Event using the Event Constructor 00:14:18
    • Launch the Test 00:08:07
    • Calculate Words per Minute & wpmChange (Data Module) 00:15:25
    • Update the Time Left (Data & UI Modules) 00:06:11
    • Calculate Clicks per Minute & cpmChange (Data Module) 00:03:26
    • Calculate accuracy & accuracyChange (Data Module) 00:06:11
    • Update Results (UI Module) 00:20:00
    • End the test & show the Modal (1) (Data & UI Modules) 00:13:40
    • End the test & show the Modal (2) (Data & UI Modules) 00:18:18
    • Generate PDF Certificate (1) (Certificate Module) 00:17:57
    • Generate PDF Certificate (2) (Certificate Module) 00:18:00
    • Generate PDF Certificate (3) (Certificate Module) 00:18:33
  16. Oreilly - The Complete Javascript Course: Build a Professional Project

    9781789341539.The.Complete.Javascript.Course.Build.a.Professional.Project.part1.OR.rar

    9781789341539.The.Complete.Javascript.Course.Build.a.Professional.Project.part2.OR.rar


 TO MAC USERS: If RAR password doesn't work, use this archive program: 

RAR Expander 0.8.5 Beta 4  and extract password protected files without error.


 TO WIN USERS: If RAR password doesn't work, use this archive program: 

Latest Winrar  and extract password protected files without error.


 Coktum   |  

Information
Members of Guests cannot leave comments.


SermonBox - Seasonal Collection

SermonBox - The Series Pack Collection

Top Rated News

  • Christmas Material
  • Laser Cut & Print Design Elements Bundle - ETSY
  • Daz3D - All Materials - SKU 37000-37999
  • Cgaxis - All Product - 2019 - All Retail! - UPDATED!!!
  • DigitalXModels Full Collections
  • Rampant Design Tools Full Collections Total: $4400
  • FilmLooks.Com Full Collection
  • All PixelSquid Product
  • The Pixel Lab Collection
  • Envato Elements Full Sources- 3200+ Files
  • Ui8.NET Full Sources
  • The History of The 20th Century
  • The Dover Collections
  • Snake Interiors Collections
  • Inspirational Collections
  • Veer Fancy Collections
  • All Ojo Images
  • All ZZVE Collections
  • All Sozaijiten Collections
  • All Image Broker Collections
  • Shuterstock Bundle Collections
  • Tattoo Collections
  • Blend Images Collections
  • Authors Tuorism Collections
  • Motion Mile - Big Bundle
  • PhotoBacks - All Product - 2018
  • Dekes Techniques - Photoshop & Illustrator Course - 1 to 673
Telegram GFXTRA Group
Udemy - Turkce Gorsel Ogrenme Setleri - Part 2
Videohive Wow Pack Series


rss