Login: Password:  Do not remember me

Categories




Video TrainingUdemy - HTML with CSS and JavaScript





Udemy - HTML with CSS and JavaScript
Instructors: Muhammad Razni Hashim
1 section * 10 lectures * 1h 1m
Video: MP4 1280x720 44 KHz | English + Sub
Updated 2/2022 | Size: 345 MB
Web development with HTML



      Read more...         

Video TrainingPrateek Parekh - JavaScript Functions





Prateek Parekh - JavaScript Functions
Prateek Parekh | Duration: 0h 48m | Video: H264 1280x720 | Audio: AAC 48 kHz 2ch | 74 MB | Language: English
javascript is the most commonly used programming language and functions are one of the fundamental building blocks in javascript. The skills you learn in this course will help you learn other javascript frameworks such as React and Node.js.
Code is hard to maintain, especially when you keep adding new features to your project over several months and years. If you are not careful, you can end up with spaghetti code where several parts of the project are essentially doing the same task and any change in one feature can cause changes in several other parts of the code. In this course, javascript: Functions, you'll learn the foundational knowledge to write modular code that not only prevents duplication, but also increases code readability and maintainability. First, you'll explore what Functions are and how to write them. Next, you'll discover the power of Arrow Functions in improving readability. Finally, you'll gain the ability to use additional language features that come with javascript out-of-the-box to write applications with multiple functions interacting with each other. When you're finished with this course, you'll have the skills and knowledge of Functions needed to write modular, re-usable, and concise code in javascript.



      Read more...         

Video TrainingPaul D. Sheriff - JavaScript Syntax and Operators





Paul D. Sheriff - JavaScript Syntax and Operators
Paul D. Sheriff | Duration: 1h 41m | Video: H264 1280x720 | Audio: AAC 48 kHz 2ch | 219 MB | Language: English
Learn various javascript structures such as switch, for/in, and for/of. See what math, logical, and comparison operators you can use. Explore how to handle exceptions and work with the 'this' keyword.
Are you a javascript programmer that needs to learn more about the syntax, exception handling, and the wide array of operators javascript has to offer? In this course, javascript Syntax and Operators, you will expand your knowledge of the javascript language. First, you will learn all about the switch statement and the difference between for/in and for/of. Next, you will discover the various math, comparison, and logical operators, in addition to handling exceptions and determining the data type of variables. Finally, you will explore the 'this' keyword and the spread operator. When you are finished with this course, you will have gained the skills and knowledge of javascript syntax and operators needed to propel your javascript applications to the next level.



      Read more...         

Video TrainingNate Taylor - JavaScript Promises and Async Programming





Nate Taylor - JavaScript Promises and Async Programming
Nate Taylor | Duration: 1h 21m | Video: H264 1280x720 | Audio: AAC 48 kHz 2ch | 168 MB | Language: English
Asynchronous programming is often intimidating, it's not how we normally consider writing code. This course shows how promises and async/await can help simplify async programming.
Asynchronous programming is often new and confusing when first learning javascript. In this course, javascript Promises and Async Programming, you'll gain the ability to handle async programming in javascript. First, you'll explore consuming promises. Next, you'll discover creating your own promises. Finally, you'll learn how to use async/await to handle asynchronous programming. When you're finished with this course, you'll have the skills and knowledge of javascript promises needed to handle asynchronous code.



      Read more...         

Video TrainingMarques Woodson - Javascript Generators and Iterators by Marques Woodson





Marques Woodson - Javascript Generators and Iterators by Marques Woodson
Marques Woodson | Duration: 1h 25m | Video: H264 1280x720 | Audio: AAC 48 kHz 2ch | 198 MB | Language: English
Iterators and iterables are very commonly used in javascript applications. This course will teach you all about iterators, built-in iterables, and how to control execution flow using generator functions.
Understanding iterators, iterables, and generator functions can be difficult. In this course, javascript Generators and Iterators, you will learn foundational knowledge of these constructs so that you feel comfortable using them every day. First, you will understand what iterators are and a few of the available built-in iterables. Next, you will discover generator functions and the yield keyword. Finally, you will explore how to use Cancelable Async Flows to help treat your generator functions like async functions. When you are finished with this course, you will have the skills and knowledge of iterators and generator functions needed to start using them today.



      Read more...         

Video TrainingMarcin Hoppe - JavaScript Security Best Practices





Marcin Hoppe - JavaScript Security Best Practices
Marcin Hoppe | Duration: 1h 31m | Video: H264 1280x720 | Audio: AAC 48 kHz 2ch | 171 MB | Language: English
Learn how to write more secure javascript code. This course will teach you how to find, fix, and prevent vulnerabilities caused by unique javascript issues such as prototype pollution, dynamic typing bugs, and code injection attacks.
Complex Web applications contain a lot of javascript code. Security of those applications depends on how robust this code is. In this course, javascript Security: Best Practices, you'll learn how to improve the security of your javascript code. First, you'll explore how exploiting the dynamic type system may lead to information disclosure vulnerabilities. Next, you'll discover how javascript dynamic code execution functions can allow attackers to run arbitrary code within your application. Finally, you'll learn how abusing prototypal inheritance may change the behavior of your application in unexpected ways. When you're finished with this course, you'll have the skills and knowledge of javascript security best practices needed to protect your web applications against attackers.



      Read more...         

Video TrainingJim Cooper - JavaScript Objects, Prototypes, and Classes





Jim Cooper - JavaScript Objects, Prototypes, and Classes
Jim Cooper | Duration: 1h 48m | Video: H264 1280x720 | Audio: AAC 48 kHz 2ch | 194 MB | Language: English
Dig deeply into creating with prototypes using inheritance including constructor functions and classes. Gain a deep understanding of what happens with prototypes behind-the-scenes when creating objects and working with inheritance.
Objects, prototypes, and classes are extensively used in javascript programming. Understanding each of them beyond a surface level will help you more deeply understand the foundations of javascript. In this course, javascript Objects, Prototypes, and Classes, you will learn the foundations of creating and working with objects including a deeper understanding of how javascript works with regards to objects and inheritance. First, you will see different ways to create objects and properties and how to work with them, including modifying property descriptors, using constructor functions, working with getters and setters, and more. Next, you will discover what prototypes are, how prototypes and prototypal inheritance work in javascript, and some of the hidden complexities of prototypes. Finally, you will explore how to create objects and handle inheritance using classes. When you're finished with this course, you will have the skills and knowledge of javascript Objects, Prototypes and Classes needed to create powerful and well structured applications that take advantage of the dynamic power of javascript.



      Read more...         

Video TrainingJeff Batt - JavaScript Arrays and Collections





Jeff Batt - JavaScript Arrays and Collections
Jeff Batt | Duration: 1h 57m | Video: H264 1280x720 | Audio: AAC 48 kHz 2ch | 303 MB | Language: English
ECMAScript 6 introduces some new and powerful ways to handle data. This course will introduce you to working with sets and maps as well as typed arrays so you can easily store and process data within your web apps with more functionality.
At the core of using data collections within javascript is a thorough knowledge of sets, maps, and typed arrays. In this course, javascript Arrays and Collections, you will learn how to create and apply data collections to your web applications. First, you will understand how to apply more advanced array methods to your current arrays. Next, you will explore how to store unique data using sets. Then you will learn how to store data using key and value pairs with maps. Finally, you will discover how to work directly with binary data using typed arrays. When you are finished with this course, you will have a foundational knowledge of data collections within the javascript language that will help you as you move forward to building more efficient web apps.



      Read more...         

Video TrainingBarry Luijbregts - JavaScript Variables and Types





Barry Luijbregts - JavaScript Variables and Types
Barry Luijbregts | Duration: 0h 43m | Video: H264 1280x720 | Audio: AAC 48 kHz 2ch | 113 MB | Language: English
javascript is one of the most used programming languages for developing web applications. In this course, you are going to learn some advanced javascript topics that can help you to make your code more readable and maintainable.
At the core of working with variables and types in javascript is a thorough knowledge of employing variables, literals and assignments, and applying primitive types. In this course, javascript Variables and Types, you'll learn how to work with variables and types in javascript. First, you'll learn how to employ variables. Next, you'll explore employing literals and assignments. Finally, you'll discover how to apply primitive types. When you're finished with this course, you'll have a foundational knowledge of employing variables, literals and assignments, and applying primitive types that will help you as you move forward to work with variables and types in javascript.



      Read more...         

Video TrainingUdemy - Build Real World JavaScript Development Projects Practically





Udemy - Build Real World JavaScript Development Projects Practically
Last Update: 2/2022
Duration: 28h 48m | Video: .MP4, 1280x720 30 fps | Audio: AAC, 48 kHz, 2ch | Size: 12 GB
Genre: eLearning | Language: English



      Read more...         

Page:

Search



Updates




Friend Sites


» TinyDL
» EbookTra
» 0dayHome

Your Link Here ?
(Pagerank 4 or above)