-
Dart-JavaScript interoperability (Dart Developer Summit 2016)
Original source
-
JavaScript и ООП [GeekBrains]
Начни карьеру с бесплатного курса “Основы программирования” https://geekbrains.ru/basics_intensive?utm_source=youtube.com&utm_medium=internal&utm_campaign=description&utm_content=basics_intensive Море бесплатной информации по программированию https://geekbrains.ru/?utm_medium=internal&utm_source=youtube.com&utm_campaign=geekbrains&utm_term=d7Ch5Bqc7co&utm_content=main JavaScript — прототипно-ориентированный сценарный язык программирования, который очень широко используется в разработке интерактивных приложений и сайтов. Большинство разработчиков пишут код в функциональном стиле, это не хорошо и не плохо. Есть альтернативный подход – использование ООП в JavaScript. О плюсах и минусах…
-
What Makes Javascript Weird…and AWESOME – Pt 1
Javascript is so weird…and so AWESOME. There are 5 root things that make it this way. If you’re new, learning to grasp these 5 concepts will get you a LONG WAY in your JS programming. Honestly, there are a LOT of intermediate programmers who don’t understand these concepts. Many coders who know how to work…
-
SharePoint Web Part in JavaScript
Peter Kalmstrom shows how to use JavaScript to create a web part that works in both SharePoint 2010 and SharePoint 2013. Peter is using as much HTML5 techniques as possible in this demo. Also refer to http://www.kalmstrom.com/Tips/SharePointJavaScriptWebPart.htm Original source
-
Beginner JavaScript Tutorial – 9 – The return Statement
Facebook – https://www.facebook.com/TheNewBoston-464114846956315/ GitHub – https://github.com/buckyroberts Google+ – https://plus.google.com/+BuckyRoberts LinkedIn – https://www.linkedin.com/in/buckyroberts reddit – https://www.reddit.com/r/thenewboston/ Support – https://www.patreon.com/thenewboston thenewboston – https://thenewboston.com/ Twitter – https://twitter.com/bucky_roberts Original source
-
JavaScript beginner tutorial 33 – checkboxes
In this tutorial I show you how to use JavaScript to find out if a checkbox has been ticked or not. Don’t forget to subscribe: http://www.youtube.com/user/QuentinWatt Social links: ————————————————————- Add me on twitter: Tweets by QuentinWatt facebook group: https://www.facebook.com/quentin.watt ————————————————————- Original source
-
How to Use Javascript Promises
This screencast explains the Javascript Promise pattern at a very high level. Promises are a fundamental tool for modern Javascript development, but it’s easy to get overwhelmed when first starting out. All of the code is pseudo-code meant to make the concept of Promises easier to understand. In a real code base you probably want…
-
ASP NET TextBox and JavaScript
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/2015/03/aspnet-textbox-and-javascript.html In this video we will discuss 1. JavaScript focus method 2. JavaScript select method 3. How to count the number of characters as you type in a textbox and display that…
-
do while loop in JavaScript
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/11/do-while-loop-in-javascript.html In this video we will discuss do while loop in JavaScript with an example. In Part 16 we discussed while loop. Please watch Part 16 before proceeding. while loop : 1.…
-
Javascript Generators – THEY CHANGE EVERYTHING – ES6 Generators Harmony Generators
Javascript Generators are AWESOME. At first glance, they seem overly simple and not very useful, but with a little bit of library love, they turn your async javascript from awful to joyful. View the code here: https://gist.github.com/learncodeacademy/bf04432597334190bef4 If you don’t know promises, watch this video: http://www.youtube.com/watch?v=obaSQBBWZLk&list=UUVTlvUkGslCV_h-nSAId8Sw Basically, ES6 generators give you the ability to write…