-
The Linguistics of JavaScript – Erin McKean (Wordnik) keynote
From Fluent 2015: “Javascript is Esperanto that does something.” Constructed languages — conlangs — are artificially-created languages, a category which includes Esperanto, Elvish, Klingon, Dothraki, and yes, Javascript. Can thinking about Javascript the way we think about other human languages help us be better coders, or at least write more readable code? About Erin McKean…
-
Best JavaScript Tutorial for Beginners
What is the best JavaScript tutorial for beginners? I need to start learning it. Arguably I’d say Khan Academy. They have introductory lessons on HTML5 and JavaScript, even moving up into JavaScript for web based games. I suppose if they can teach eight year olds common core math methods for multiplying and algebraic reasoning to…
-
Factory Functions in JavaScript
Video transcript and code examples here: https://medium.com/@mpjme/d38e49802555 Original source
-
JavaScript Canvas Tutorial – Move a sprite/character on screen using the keyboard
In this video I teach you how to create a basic square and simply move it by using your arrow keys. Visit my new site for Tutorials and random stuff I blog about http://calebprenger.com Original source
-
JavaScript Tutorial für Anfänger #18 – Rekursive Funktionen
In diesem Tutorial schauen wir uns einen Trick an, den man mit Funktionen anstellen kann: Rekursion. Folgt mir auf Twitter: https://twitter.com/TheMorpheusTuts Facebook: https://www.facebook.com/themorpheustutorials Github: https://github.com/TheMorpheus407/Tutorials Website: http://the-morpheus.de Unterstütze mich: https://www.patreon.com/user?u=5322110 Oder auf Paypal: https://www.paypal.me/TheMorpheus oder bestell auf Amazon über mich: http://amzn.to/2slBSgH oder bestell auf Amazon über mich: http://amzn.to/2slBSgH Unser Discord-Server: https://discord.gg/xW7k3xd Original source
-
Promises – Part 8 of Functional Programming in JavaScript
Promises are, just like callbacks, a way of dealing with things being asynchronous – when we don’t know for certain in what order things will happen. But promises are more powerful than callbacks because they compose – you can combine promises and chain them, all kinds of cool stuff – I’ve showed you some in…
-
8.1: Introduction to Data and APIs in JavaScript – p5.js Tutorial
This video introduces the idea of using external data in a p5.js sketch. What are the various formats — JSON, tabular data, XML? What is an API? Wind map: http://hint.fm/wind/ All examples: https://github.com/shiffman/Video-Lesson-Materials Contact: https://twitter.com/shiffman Next video: JavaScript basics: HTML/CSS basics: Full Data playlist: Help us caption & translate this video! http://amara.org/v/QbuI/ Original source
-
javaScript tutorial basics fundamentals ( data types string numbers objects null undefined )
In this tutorial we learn javascript from the beginning. I will be using code playground such as jsfiddle.net to show you live code examples covering following topics – Javascript how to define a variable – Javascript how to define a string – Javascript how to define a number – Javascript how to define a object…
-
JavaScript для начинающих | #4 Синтаксис JavaScript
В этом уроке мы рассмотрим основы синтаксиса JavaScript. Узнаем больше о значения, операторах, выражениях и т.д. Приятного просмотра 😉 Original source
-
Modular Javascript #3 – Revealing Module Pattern Javascript Tutorial
The revealing module pattern allows us to create private variables in a Javascript Module. Here’s a writeup on this pattern: http://addyosmani.com/resources/essentialjsdesignpatterns/book/#revealingmodulepatternjavascript Here’s the code for this video: Here’s video 1 in case you missed it: We write a revealing module pattern by starting with a self-executing anonymous function also known as an IIFE (immediately invoked…