riversongs Posted December 31, 2024 Report Share Posted December 31, 2024 Free Download Javascript Understanding The Weird Parts (2024 Edition)Last updated: 7/2024MP4 | Video: h264, 1920x1080 | Audio: AAC, 44.1 KHzLanguage: English | Size: 3.94 GB | Duration: 12h 37mAn advanced JavaScript course for everyone! Scope, closures, prototypes, 'this', build your own framework, and more.What you'll learnGrasp how Javascript works and it's fundamental conceptsWrite solid, good Javascript codeUnderstand advanced concepts such as closures, prototypal inheritance, IIFEs, and much more.Drastically improve your ability to debug problems in Javascript.Avoid common pitfalls and mistakes other Javascript coders makeUnderstand the source code of popular Javascript frameworksBuild your own Javascript framework or libraryRequirementsBasic Javascript knowledge (variables, loops, and basic functions - that's all the course expects you to know!)A browser and text editorDescriptionJavascript is the language that modern developers need to know, and know well. Truly knowing Javascript will get you a job, and enable you to build quality web and server applications. NOTE: This course includes information on ECMAScript 6 (ES6) the next version of Javascript! In this course you will gain a deep understanding of Javascript, learn how Javascript works under the hood, and how that knowledge helps you avoid common pitfalls and drastically improve your ability to debug problems. You will find clarity in the parts that others, even experienced coders, may find weird, odd, and at times incomprehensible. You'll learn the beauty and deceptive power of this language that is at the forefront of modern software development today. This course will cover such advanced concepts as objects and object literals, function expressions, prototypical inheritance, functional programming, scope chains, function constructors (plus new ES6 features), immediately invoked function expressions (IIFEs), call, apply, bind, and more. We'll take a deep dive into the source code of popular frameworks such as jQuery and Underscore to see how you can use your understanding of Javascript to learn (and borrow) from other's good code. Finally, you'll learn the foundations of how to build your own Javascript framework or library.What you'll learn in this course will make you a better Javascript developer, and improve your abilities in AngularJS, NodeJS, jQuery, React, Ember, MongoDB, and all other Javascript-based technologies!Learn to love Javascript, and code in it well. Note: In this course you'll also get downloadable source code. You will often be provided with 'starter' code, giving you the base for you to start writing your code, and 'finished' code to compare your code to.OverviewSection 1: Getting StartedLecture 1 Introduction and The Goal of This CourseLecture 2 SetupLecture 3 Setup (Visual Studio Code)Lecture 4 Big Words and JavascriptLecture 5 Watching this Course in High DefinitionLecture 6 Understanding, Frameworks, and The Weird PartsSection 2: Execution Contexts and Lexical EnvironmentsLecture 7 Conceptual Aside: Syntax Parsers, Execution Contexts, and Lexical EnvironmentsLecture 8 Conceptual Aside: Name/Value Pairs and ObjectsLecture 9 Downloading Source Code for This CourseLecture 10 The Global Environment and The Global ObjectLecture 11 The Execution Context - Creation and HoistingLecture 12 Conceptual Aside: Javascript and 'undefined'Lecture 13 The Execution Context - Code ExecutionLecture 14 Conceptual Aside: Single Threaded, Synchronous ExecutionLecture 15 Function Invocation and the Execution StackLecture 16 Functions, Context, and Variable EnvironmentsLecture 17 The Scope ChainLecture 18 Scope, ES6, and letLecture 19 What About Asynchronous Callbacks?Section 3: Types and OperatorsLecture 20 Conceptual Aside: Types and JavascriptLecture 21 Primitive TypesLecture 22 Conceptual Aside: OperatorsLecture 23 Operator Precedence and AssociativityLecture 24 Operator Precedence and Associativity TableLecture 25 Conceptual Aside: CoercionLecture 26 Comparison OperatorsLecture 27 Equality Comparisons TableLecture 28 Existence and BooleansLecture 29 Default ValuesLecture 30 Framework Aside: Default ValuesSection 4: Objects and FunctionsLecture 31 Objects and the DotLecture 32 Objects and Object LiteralsLecture 33 Framework Aside: Faking NamespacesLecture 34 JSON and Object LiteralsLecture 35 Functions are ObjectsLecture 36 Function Statements and Function ExpressionsLecture 37 Conceptual Aside: By Value vs By ReferenceLecture 38 Objects, Functions, and 'this'Lecture 39 Conceptual Aside: Arrays - Collections of AnythingLecture 40 'arguments' and spreadLecture 41 Framework Aside: Function OverloadingLecture 42 Conceptual Aside: Syntax ParsersLecture 43 Dangerous Aside: Automatic Semicolon InsertionLecture 44 Framework Aside: WhitespaceLecture 45 Immediately Invoked Functions Expressions (IIFEs)Lecture 46 Framework Aside: IIFEs and Safe CodeLecture 47 Understanding ClosuresLecture 48 Understanding Closures - Part 2Lecture 49 Framework Aside: Function FactoriesLecture 50 Closures and CallbacksLecture 51 call(), apply(), and bind()Lecture 52 Functional ProgrammingLecture 53 Functional Programming - Part 2Section 5: Object-Oriented Javascript and Prototypal InheritanceLecture 54 Conceptual Aside: Classical vs Prototypal InheritanceLecture 55 Understanding the PrototypeLecture 56 Everything is an Object (or a primitive)Lecture 57 Reflection and ExtendSection 6: Building ObjectsLecture 58 Function Constructors, 'new', and the History of JavascriptLecture 59 Function Constructors and '.prototype'Lecture 60 Dangerous Aside: 'new' and functionsLecture 61 Conceptual Aside: Built-In Function ConstructorsLecture 62 Dangerous Aside: Built-In Function ConstructorsLecture 63 Dangerous Aside: Arrays and for..inLecture 64 Object.create and Pure Prototypal InheritanceLecture 65 ES6 and ClassesSection 7: Odds and EndsLecture 66 InitializationLecture 67 'typeof' , 'instanceof', and Figuring Out What Something IsLecture 68 Strict ModeLecture 69 Strict Mode ReferenceSection 8: Examining Famous Frameworks and LibrariesLecture 70 Learning From Other's Good CodeLecture 71 Deep Dive into Source Code: jQuery - Part 1Lecture 72 Deep Dive into Source Code: jQuery - Part 2Lecture 73 Deep Dive into Source Code: jQuery - Part 3Section 9: Let's Build a Framework / Library!Lecture 74 RequirementsLecture 75 Structuring Safe CodeLecture 76 Our Object and Its PrototypeLecture 77 Properties and Chainable MethodsLecture 78 Adding jQuery SupportLecture 79 Good CommentingLecture 80 Let's Use Our FrameworkLecture 81 A Side NoteSection 10: EXTRA: TypeScript, ES6, and Transpiled LanguagesLecture 82 TypeScript, ES6, and Transpiled LanguagesLecture 83 Transpiled Languages ReferencesSection 11: Promises, Async, and AwaitLecture 84 About This SectionLecture 85 Promises, Async, and AwaitSection 12: ES6: The Most Used PartsLecture 86 ES6: The Most Used PartsLecture 87 letLecture 88 constLecture 89 Arrow FunctionsLecture 90 Destructuring AssignmentSection 13: ConclusionLecture 91 Learning to Love the Weird PartsLecture 92 BonusThose with basic Javascript skills who wish to improve,Experienced coders coming from other programming languages,New and experienced Javascript coders who want to deepen their understanding of the language,Anyone who has found concepts just as object prototypes, closures, and other advanced concepts difficult to learn,Those who have suffered surprising errors while writing Javascript, and want to learn why and how to avoid them,Those interested in building their own frameworks, or being better able to learn from the source code of other well-known frameworks and librariesHomepage: https://www.udemy.com/course/understand-javascript/DOWNLOAD NOW: Javascript Understanding The Weird Parts (2024 Edition)Download ( Rapidgator )https://rg.to/file/044d16146deea0cffce8b685b264d174/bwoxf.Javascript.Understanding.The.Weird.Parts.2024.Edition.part5.rar.htmlhttps://rg.to/file/68099d9a22c009659e5f109139893c6e/bwoxf.Javascript.Understanding.The.Weird.Parts.2024.Edition.part2.rar.htmlhttps://rg.to/file/6b2e1505834330af5f0b7a5d178e57ba/bwoxf.Javascript.Understanding.The.Weird.Parts.2024.Edition.part1.rar.htmlhttps://rg.to/file/88a2349eb0d469df0e8fbd295dd44798/bwoxf.Javascript.Understanding.The.Weird.Parts.2024.Edition.part4.rar.htmlhttps://rg.to/file/8f9e363eb24037c3b9d217eb262109f0/bwoxf.Javascript.Understanding.The.Weird.Parts.2024.Edition.part3.rar.htmlFikperhttps://fikper.com/0EMArhzdI6/bwoxf.Javascript.Understanding.The.Weird.Parts.2024.Edition.part3.rar.htmlhttps://fikper.com/R2idw8jVLC/bwoxf.Javascript.Understanding.The.Weird.Parts.2024.Edition.part1.rar.htmlhttps://fikper.com/SwJ6uueJka/bwoxf.Javascript.Understanding.The.Weird.Parts.2024.Edition.part4.rar.htmlhttps://fikper.com/nq6c9FzOzB/bwoxf.Javascript.Understanding.The.Weird.Parts.2024.Edition.part5.rar.htmlhttps://fikper.com/wxy9GcGKzw/bwoxf.Javascript.Understanding.The.Weird.Parts.2024.Edition.part2.rar.htmlNo Password - Links are Interchangeable Link to comment Share on other sites More sharing options...
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now