Foro Wanako1
¿Quieres reaccionar a este mensaje? Regístrate en el foro con unos pocos clics o inicia sesión para continuar.

Foro Wanako1

Programas Gratuitos, Desatendidos y Mucho más!!!
 
PortalPortal  ÍndiceÍndice  BuscarBuscar  Últimas imágenesÚltimas imágenes  ConectarseConectarse  RegistrarseRegistrarse  
Buscar
 
 

Resultados por:
 
Rechercher Búsqueda avanzada
Los posteadores más activos del mes
tano1221
Getting Started with  JavaScript, v2 Vote_lcapGetting Started with  JavaScript, v2 Voting_barGetting Started with  JavaScript, v2 Vote_rcap 
ПΣӨƧӨFƬ
Getting Started with  JavaScript, v2 Vote_lcapGetting Started with  JavaScript, v2 Voting_barGetting Started with  JavaScript, v2 Vote_rcap 
ℛeℙ@¢ᴋ€r
Getting Started with  JavaScript, v2 Vote_lcapGetting Started with  JavaScript, v2 Voting_barGetting Started with  JavaScript, v2 Vote_rcap 
大†Shinegumi†大
Getting Started with  JavaScript, v2 Vote_lcapGetting Started with  JavaScript, v2 Voting_barGetting Started with  JavaScript, v2 Vote_rcap 
missyou123
Getting Started with  JavaScript, v2 Vote_lcapGetting Started with  JavaScript, v2 Voting_barGetting Started with  JavaScript, v2 Vote_rcap 
Engh3
Getting Started with  JavaScript, v2 Vote_lcapGetting Started with  JavaScript, v2 Voting_barGetting Started with  JavaScript, v2 Vote_rcap 
ronaldinho424
Getting Started with  JavaScript, v2 Vote_lcapGetting Started with  JavaScript, v2 Voting_barGetting Started with  JavaScript, v2 Vote_rcap 
Julio 2024
LunMarMiérJueVieSábDom
1234567
891011121314
15161718192021
22232425262728
293031    
CalendarioCalendario
Últimos temas
» Replay Media Catcher 2024.6.14.23
Getting Started with  JavaScript, v2 EmptyHoy a las 7:43 pm por 大†Shinegumi†大

» 3delite MP4 Video & Audio Tag Editor 1.0.252.450
Getting Started with  JavaScript, v2 EmptyHoy a las 7:28 pm por ПΣӨƧӨFƬ

» APU Software APU Loudness Compressor 2.8.3
Getting Started with  JavaScript, v2 EmptyHoy a las 7:23 pm por ПΣӨƧӨFƬ

» Boris FX CrumplePop Complete 2024.0.12
Getting Started with  JavaScript, v2 EmptyHoy a las 11:27 am por tano1221

» EaseUS Partition Master 18.8.0 Build 20240605
Getting Started with  JavaScript, v2 EmptyHoy a las 11:14 am por tano1221

» Cockos REAPER 7.18 (x86/x64)
Getting Started with  JavaScript, v2 EmptyHoy a las 11:10 am por tano1221

» SQL Backup Master 7.3.832
Getting Started with  JavaScript, v2 EmptyHoy a las 10:44 am por tano1221

» Ample Sound Ample Guitar L v3.7.0 (Win/macOS)
Getting Started with  JavaScript, v2 EmptyHoy a las 8:13 am por missyou123

» OpenCloner Ripper 2024 7.20.131 (x64) Multilingual
Getting Started with  JavaScript, v2 EmptyAyer a las 1:30 pm por ronaldinho424

Sondeo
Visita de Paises
free counters
Free counters

Comparte | 
 

 Getting Started with JavaScript, v2

Ver el tema anterior Ver el tema siguiente Ir abajo 
AutorMensaje
Invitado
Invitado



Getting Started with  JavaScript, v2 Empty
MensajeTema: Getting Started with JavaScript, v2   Getting Started with  JavaScript, v2 EmptyVie Jun 12, 2020 9:11 am

Getting Started with  JavaScript, v2 A2f1af504006a890702fb0cdc8ba8032

Getting Started with JavaScript, v2
WEBRip | English | MP4 + PDF Guides | 1920 x 1080 | VP8 ~615 kbps | 29.970 fps
A_VORBIS | 192 Kbps | 48.0 KHz | 2 channels | 2h 36mn | 1.4 GB
Genre: eLearning Video / Development, Programming
Want to learn to code using JavaScript? This is a great place to start! In this course, you'll start out with a tour of the basic building blocks programming like variables, loops, functions and operations. Then, you'll go through the three main pillars of JavaScript: Types and Coercion for comparing values and converting between types, Scope and Closure for knowing where variables can be accessed, and JavaScript's "this" and Prototype system for dynamic context.

Introduction
Introduction
00:00:00 - 00:05:44
Introduction
Kyle Simpson introduces the course on beginning to program in JavaScript and demonstrates several basic parts of a program working together.
Course Overview
00:05:45 - 00:09:23
Course Overview
Kyle gives an overview of what will be covered in the course, including a primer on the main concepts of programming and also the three pillars of JavaScript: types and coercion, scope and closure, and this and prototypes.
Programming Primer
Values
00:09:24 - 00:16:35
Values
Kyle presents examples of different kinds of values. Differences are given between primitive and non-primitive values, and between array indexes and object properties.
Operations
00:16:36 - 00:23:57
Operations
Kyle presents examples of different kinds of operations that can be performed, including addition, subtraction and comparison. After explaining what each does, Kyle runs the code to show how they evaluate.
Types
00:23:58 - 00:27:12
Types
Kyle demonstrates how the typeof unary operator can be used to reveal the type of a value, including number, string, boolean, undefined, and object.
Variables
00:27:13 - 00:36:57
Variables
Kyle explains what variables are, walking through how to use the assignment operator to assign a variable's value and then how to access the value. Empty values and semicolons are also discussed.
Expressions vs Statements
00:36:58 - 00:40:54
Expressions vs Statements
Kyle differentiates between expressions and statements and then counts the number of expressions in an example statement. Kyle later runs an expression and statement to show how they evaluate.
If & Else
00:40:55 - 00:44:39
If & Else
Kyle introduces control flow in JavaScript in the form of if and else statements, and explains the power this gives to the programmer. Kyle then runs a program with an if else statement.
Loops
00:44:40 - 00:51:41
Loops
Kyle introduces loops by describing for loops, for of loops, and while loops. After explaining why loops are used, Kyle then runs a while loop to demonstrate how the while loop is working.
Functions
00:51:42 - 00:56:27
Functions
Kyle explains why it is useful to group code together into a function, highlights the parts of a function signature, and shows what a function evaluates to after changing its arguments and running it.
Programming Primer Exercise
00:56:28 - 01:01:34
Programming Primer Exercise
Kyle instructs students to use the basic programming principles learned in previous lessons to work through an exercise on adding strings to an array, then looping through the array.
Programming Primer Solution
01:01:35 - 01:11:23
Programming Primer Solution
Kyle live codes the solution to the exercise.
Programming Primer Summary
01:11:24 - 01:12:30
Programming Primer Summary
Kyle summarizes the programming primer section of the course, suggests resources for learning more about mentioned concepts, and discusses what will be covered in the course next.
Types & Coercion
Primitive Types
01:12:31 - 01:20:46
Primitive Types
Kyle introduces primitive types by debunking the myth that everything in JavaScript is an object and then explains what it means for the type to belong to the value in JavaScript instead of the variable.
NaN
01:20:47 - 01:22:52
NaN
Kyle explains what NaN is, when a NaN will be returned, how to test if a value is of the type NaN, and in what situations it is beneficial to test for NaN values.
new
01:22:53 - 01:24:56
new
Kyle differentiates between situations where new should be used to create instances of object representations and when not to use new, and instead by omitting it allow for type conversion to occur.
Coercion
01:24:57 - 01:30:04
Coercion
Kyle introduces coercion by explaining when it occurs, discussing how the plus operator is overloaded related to coercion, and walking through instances of number and string coercion.
Booleans
01:30:05 - 01:35:55
Booleans
Kyle displays the list of falsy and truthy values in JavaScript, and explains how the falsy list can be used to know which values will become true or false during conversion to a boolean value. Examples are given in the form of if and while statements.
Coercion Best Practices
01:35:56 - 01:39:51
Coercion Best Practices
Kyle argues for making types and type conversions obvious, and frames the quality of a program related to types in terms of the reader of the code.
Equality
01:39:52 - 01:44:43
Equality
Kyle distinguishes between the double and triple equals, and dives into how each works under the hood related to type conversions. A case is made for not always choosing the triple equals.
Types Summary
01:44:44 - 01:46:28
Types Summary
Kyle summarizes the section on types by advocating for critical thinking around how to use types in a program, when to allow type coercion, and when to disallow it.
Scope
Scope
01:46:29 - 01:49:40
Scope
Kyle introduces scope as the rules for where to look for things and walks through the process of how variables are being looked up in a few lines of code.
Undefined vs Undeclared
01:49:41 - 01:50:28
Undefined vs Undeclared
Kyle explains how the two concepts around emptiness in JavaScript, undefined and undeclared, differ.
Function Expressions
01:50:29 - 01:54:29
Function Expressions
Kyle defines what a function expression is and then performs side-by-side comparisons between named and anonymous function expressions to argue that naming increases readability.
IFFEs
01:54:30 - 01:56:33
IFFEs
Kyle discusses when it is beneficial to use the IIFE pattern to create immediately invoked function expressions.
Block Scoping with let
01:56:34 - 02:01:03
Block Scoping with let
Kyle explains how to use block scoping as a tool to selectively make variables available, with the let keyword protecting a value from being accessed in an outer scope.
Closure
02:01:04 - 02:06:38
Closure
Kyle explains what it means for closure to occur in a program and how to use closure advantageously when passing functions to other functions.
this & Prototypes
this
02:06:39 - 02:12:02
this
Kyle demonstrates how the this keyword in JavaScript's dynamic context system references the execution context of a function call in order to access values that are specific to that function call.
Prototypes
02:12:03 - 02:16:05
Prototypes
Kyle introduces prototypal inheritance in JavaScript through an example where a method is added to a constructor's prototype and is then available to instances created using the constructor.
class
02:16:06 - 02:18:38
class
Kyle explains how the class keyword works in JavaScript by displaying code using the class syntax that achieves the same result as code that uses the prototypal inheritance pattern.
Practice
Three Pillars of JS Exercise
02:18:39 - 02:21:08
Three Pillars of JS Exercise
Kyle instructs students to build off of code from the first exercise by incorporating elements of types, scope and closure, and the this and prototypes system.
Three Pillars of JS Solution
02:21:09 - 02:33:13
Three Pillars of JS Solution
Kyle live codes the solution to the exercise.
Pillars of JS Summary
02:33:14 - 02:35:33
Pillars of JS Summary
Kyle reviews what was learned about the three pillars of JavaScript and gives tips about how to continue growing as a JavaScript developer.
Wrapping Up
Wrapping Up
02:35:34 - 02:36:55
Wrapping Up
Kyle wraps up the course by encouraging students to go out and code in JavaScript using the tools learned in the course

General
Complete name : 2. Three Pillars of JS Solution.mp4
Format : WebM
Format version : Version 2
File size : 73.3 MiB
Duration : 12 min 4 s
Overall bit rate mode : Variable
Overall bit rate : 849 kb/s
Writing application : Lavf57.71.100
Writing library : Lavf57.71.100
FileExtension_Invalid : webm

Video
ID : 2
Format : VP8
Codec ID : V_VP8
Duration : 12 min 4 s
Bit rate : 615 kb/s
Width : 1 920 pixels
Height : 1 080 pixels
Display aspect ratio : 16:9
Frame rate mode : Constant
Frame rate : 29.970 (30000/1001) FPS
Compression mode : Lossy
Bits/(Pixel*Frame) : 0.010
Stream size : 53.1 MiB (72%)
Language : English
Default : Yes
Forced : No

Audio
ID : 1
Format : Vorbis
Format settings, Floor : 1
Codec ID : A_VORBIS
Duration : 12 min 4 s
Bit rate mode : Variable
Bit rate : 192 kb/s
Channel(s) : 2 channels
Sampling rate : 48.0 kHz
Compression mode : Lossy
Delay relative to video : -3 ms
Stream size : 16.6 MiB (23%)
Writing application : Lavc57.89.100
Writing library :
Language : English
Default : Yes
Forced : No

Screenshots

Getting Started with  JavaScript, v2 F77287d7177fbbe8854d8944472e93d7

Getting Started with  JavaScript, v2 B2a6369b055c632850fe1994f8c4a695

Download link:
Citación :
rapidgator_net:
https://rapidgator.net/file/f38485864970b0201d44a1dfb610d686/4q2jk.Getting.Started.with.JavaScript.v2.part1.rar.html
https://rapidgator.net/file/013642c89480399dd3a67bfe8604667a/4q2jk.Getting.Started.with.JavaScript.v2.part2.rar.html

nitroflare_com:
https://nitroflare.com/view/9A440FB8BA2C6B8/4q2jk.Getting.Started.with.JavaScript.v2.part1.rar
https://nitroflare.com/view/8D3AC6B55FA408A/4q2jk.Getting.Started.with.JavaScript.v2.part2.rar

uploadgig_com:
http://uploadgig.com/file/download/fc2e0FA2677fcFa7/4q2jk.Getting.Started.with.JavaScript.v2.part1.rar
http://uploadgig.com/file/download/ddf4aa71fEa83bAf/4q2jk.Getting.Started.with.JavaScript.v2.part2.rar

Links are Interchangeable - No Password - Single Extraction
Volver arriba Ir abajo
 

Getting Started with JavaScript, v2

Ver el tema anterior Ver el tema siguiente Volver arriba 
Página 1 de 1.

 Temas similares

-
» Learning and Practicing JavaScript Get Started
» JavaScript: Getting Started [Updated Mar 2, 2021]
» JavaScript REST APIs: Getting Started
» Learn Modern JavaScript: Getting Started
» Building Websites with HTML, CSS, and JavaScript: Getting Started

Permisos de este foro:No puedes responder a temas en este foro.
Foro Wanako1 :: Programas o Aplicaciónes :: Ayuda, Tutoriales-