-
Recursion – Part 7 of Functional Programming in JavaScript
In this video, we are going to learn about recursion – what recursion is, how it works, and why it’s useful. This video is part of a series – you’ll get a lot more out of it if you watch the other episodes before watching this one. You can find them here: Recursion is when…
-
Javascript Selectors – Javascript Tutorial for Beginners With Examples
In this Javascript tutorial for beginners, we’re going to be using Javascript selectors to access the DOM (document object model) and interact with our webpage in realtime. Selectors allow us to search for elements in the web page, get those html elements, and do things with them. Selector methods are: document.getElementsByTagName(‘div’) document.getElementsByClassName(‘done’) document.getElementById(‘my-id’) document.querySelector(‘#my-id’) document.querySelectorAll(‘.classname’)…
-
JavaScript closure example
Link for all dot net and sql server video tutorial playlists http://www.youtube.com/user/kudvenkat/playlists Link for slides, code samples and text version of the video http://csharp-video-tutorials.blogspot.com/2014/12/javascript-closure-example.html In this video we will discuss a simple JavaScript closure example. Every time we click a button on a web page, we want to increment the click count by 1. There…
-
Продвинутый javascript 1 – Шаблоны вызова функции и this
C этого видео начинается курс по продвинутому javascript. Внимательно изучая его и внедряя в свой рабочий процесс все показанные техники и знания – вы гарантированно станете называться продвинутый front-end developer. В этом уроке мы рассмотрим шаблоны вызова функции, метода и метода apply. Смотри курс “Gulp.js” : https://www.youtube.com/playlist?list=PLY4rE9dstrJwXCz1utct9b6Vub9VWQoKo Смотри курс “Backbone.js” : https://www.youtube.com/playlist?list=PLY4rE9dstrJx-28CgOCgcipVOgaRkAuJ5 Не ограничивай себя…
-
What JavaScript frameworks should web developers use?
Web developer Brady Higginbotham answers this week’s question about the best JavaScript frameworks that web developers should explore. New to development or a pro who needs help? Just tweet your question to #AskADev. We’ll pick the best ones and have a developer answer them. Original source
-
DEFCON 20: Owning Bad Guys {And Mafia} With Javascript Botnets
Conference delivered by Chema Alonso in Defcon 20 about How to own bad guys {and mafia} using Javascript Botnets created by a Rogue “Anonymous” Proxy Server. White Paper at: http://www.slideshare.net/chemai64/owning-bad-guys-and-mafia-with-javascript-botnets Original source
-
Modular Javascript #6 – Classical Inheritance & OOP with JS
In this video, we will start covering object oriented programming in Javascript. There are several ways to do it – the first is called “classical inheritance”. Here’s the link to the “inherit” function I use here: https://github.com/nodejs/node-v0.x-archive/blob/master/lib/util.js#L634-L644 Using a constructor, a prototoype, and the “new” keyword, we can create multiple copies or “instances” of a…
-
Prototype basics – Object Creation in JavaScript P3 – FunFunFunction #46
We’ll go through the absolute basics of the prototype in this video. I’m going to explain why you should learn prototypes, and how they work. Complete series playlist: “Object creation in JavaScript” https://goo.gl/ELUE4B You’re probably used to doing inheritance with classes. JavaScript achieves inheritance using prototypes. The real-world analogy used when teaching classes is a…
-
JavaScript : Découverte de jQuery
Plus d’infos sur ce tutoriel : https://grafikart.fr/formations/debuter-javascript/decouverte-jquery Abonnez-vous à Grafikart : http://bit.ly/19nGK3G Si vous commencez à faire des recherches en ligne sur le JavaScript il y a de fortes chance que vous tombiez sur des questions concernant la librairie **jQuery**. Cette librairie est extrèmement populaire, au point qu’il est difficile de trouver un plugin qui…
-
Javascript beginner tutorial 12 – variable scope
In this video I talk about global and local variables and where we can use each one. Now it’s up to you as a programmer to decide where to declare you JavaScript variables. If you read this description then comment below: “Just remember with great power comes great responsibility, I will decide wisely :p” Don’t…