Things start to get serious Telerik Software Academy JavaScript OOP.

Slides:



Advertisements
Similar presentations
Windows Basic and Dynamic Disk Borislav Varadinov Telerik Software Academy academy.telerik.com System Administrator Marian Marinov CEO of 1H Ltd.
Advertisements

HTML Forms, GET, POST Methods Tran Anh Tuan Edit from Telerik Academy
Make swiftly iOS development Telerik Academy Telerik Academy Plus.
Amazon S 3, App Engine Blobstore, Google Cloud Storage, Azure Blobs Svetlin Nakov Telerik Software Academy academy.telerik.com.
RPN and Shunting-yard algorithm Ivaylo Kenov Telerik Software Academy academy.telerik.com Technical Assistant
Shortest paths in edge-weighted digraph Krasin Georgiev Technical University of Sofia g.krasin at gmail com Assistant Professor.
Telerik Software Academy Telerik School Academy.
Coding JavaScript the expressive way Learning & Development Telerik Software Academy.
Asynchronous Programming with C# and WinRT
Unleash the Power of JavaScript Tooling Telerik Software Academy End-to-end JavaScript Applications.
Touch and Gestures with Xamarin Forms
Telerik School Academy ASP.NET MVC.
Character sequences, C-strings and the C++ String class, Working with Strings Learning & Development Team Telerik Software Academy.
Hybrid or Native?! Doncho Minkov Telerik Software Academy Senior Technical Trainer
Done already for your convenience! Telerik School Academy Unity 2D Game Development.
Processing Sequences of Elements Telerik School Academy C# Fundamentals – Part 1.
With Mocha and Karma Telerik Academy Telerik Software Academy.
C# Fundamentals – Part I
Welcome to the JSON-stores world Telerik Software Academy Databases.
The Business Plan and the Business Model Margarita Antonova Volunteer Telerik Academy academy.telerik.com Business System Analyst Telerik Corporation.
What are ADTs, STL Intro, vector, list, queue, stack Learning & Development Team Telerik Software Academy.
Making JavaScript code by template! Learning & Development Team Telerik Software Academy.
Svetlin Nakov Telerik Software Academy academy.telerik.com Manager Technical Training Who, What, Why?
Access to known folders, using pickers, writing to and reading from files, caching files for future access George Georgiev Telerik Software Academy academy.telerik.com.
Processing Matrices and Multidimensional Tables Svetlin Nakov Telerik Software Academy academy.telerik.com Technical Trainer
Learning & Development Telerik Software Academy.
Reading and Writing Text Files Svetlin Nakov Telerik Software Academy academy.telerik.com Technical Trainer
Telerik Software Academy ASP.NET Web Forms.
Classical OOP in JavaScript Classes and stuff Telerik Software Academy
Optimization problems, Greedy Algorithms, Optimal Substructure and Greedy choice Learning & Development Team Telerik Software.
Using Selenium for Mobile Web Testing Powered by KendoUI Telerik QA Academy Atanas Georgiev Senior QA Engineer KendoUI Team.
NoSQL Concepts, Redis, MongoDB, CouchDB Svetlin Nakov Telerik Software Academy academy.telerik.com Manager Technical Training
New features: classes, generators, iterators, etc. Telerik Academy Plus JavaScript.Next.
Throwing and Catching Exceptions Tran Anh Tuan Edit from Telerik Software Academy
Loops, Conditional Statements, Functions Tran Anh Tuan Edit from Telerik Academy
Brief Overview of Combinations, Permutations and Binary Vectors Nikolay Kostov Telerik Corporation Technical Trainer.
Private/Public fields, Module, Revealing Module Learning & Development Team Telerik Software Academy.
Building Data-Driven ASP.NET Web Forms Apps Telerik Software Academy ASP.NET Web Forms.
Course Introduction Svetlin Nakov Telerik Software Academy academy.telerik.com Manager Technical Training
Telerik Software Academy End-to-end JavaScript Applications.
General and reusable solutions to common problems in software design Vasil Dininski Telerik Software Academy academy.telerik.com Intern at Telerik Academy.
Planning and Tracking Software Quality Yordan Dimitrov Telerik Corporation Team Leader, Team Pulse, Team Leader, Team Pulse, Telerik Corporation,
Closures, Function Scope, Nested Functions Learning & Development Team Telerik Software Academy.
What you need to know Ivaylo Kenov Telerik Corporation Telerik Academy Student.
Data binding concepts, Bindings in WinJS George Georgiev Telerik Software Academy academy.telerik.com Technical Trainer itgeorge.net.
Pavel Kolev Telerik Software Academy Senior.Net Developer and Trainer
Objects, Properties, Primitive and Reference Types Learning & Development Team Telerik Software Academy.
When and How to Refactor? Refactoring Patterns Alexander Vakrilov Telerik Corporation Senior Developer and Team Leader.
Free Training and Job for Software Engineers Svetlin Nakov, PhD Manager Technical Training Telerik Corp. Telerik Software Academy.
Free Training and Job for Software Engineers Svetlin Nakov, PhD Manager Technical Training Telerik Corp. Telerik Software Academy.
Access to known folders, using pickers, writing to and reading from files, caching files for future access George Georgiev Telerik Software Academy academy.telerik.com.
Doing the Canvas the "easy way"! Learning & Development Telerik Software Academy.
Creating and Running Your First C# Program Svetlin Nakov Telerik Software Academy academy.telerik.com Manager Technical Training
Course Overview Doncho Minkov Telerik Software Academy Technical Trainer
Data Types, Primitive Types in C++, Variables – Declaration, Initialization, Scope Telerik Software Academy academy.telerik.com Learning and Development.
The past, the present, the future Learning & Development Team Telerik Software Academy.
Learn to Design Error Steady Code Svetlin Nakov Telerik Software Academy academy.telerik.com Technical Trainer
Connecting, Queries, Best Practices Tran Anh Tuan Edit from Telerik Software Academy
Processing Sequences of Elements Telerik Software Academy C# Fundamentals – Part 2.
Telerik JavaScript Framework Telerik Software Academy Hybrid Mobile Applications.
Telerik Software Academy Databases.
Learning & Development Mobile apps for iPhone & iPad.
Processing Matrices and Multidimensional Tables Telerik Software Academy C# Fundamentals – Part 2.
Nikolay Kostov Telerik Software Academy academy.telerik.com Team Lead, Senior Developer and Trainer
Functions and Function Expressions Closures, Function Scope, Nested Functions Telerik Software Academy
Implementing Control Logic in C# Svetlin Nakov Telerik Software Academy academy.telerik.com Manager Technical trainer
Inheritance, Abstraction, Encapsulation, Polymorphism Telerik Software Academy Mobile apps for iPhone & iPad.
Mocking tools for easier unit testing Telerik Software Academy High Quality Code.
What why and how? Telerik School Academy Unity 2D Game Development.
Windows Security Model Borislav Varadinov Telerik Software Academy academy.telerik.com System Administrator
Presentation transcript:

Things start to get serious Telerik Software Academy JavaScript OOP

 Scopes  Block and function scope  References availability  Resolving references through the scope chain  Alternatives in ES6  Closures  What is a Closure?  How to deal with closures?  Simple modules

 Scope is a place where variables are defined and can be accessed  JavaScript has only two types of scopes  Global scope and function scope  Global scope is the same for the whole web page  Function scope is different for every function  Everything outside of a function scope is inside of the global scope if(true){ var sum = 1+2; var sum = 1+2;}console.log(sum);

 Scope is a place where variables are defined and can be accessed  JavaScript has only two types of scopes  Global scope and function scope  Global scope is the same for the whole web page  Function scope is different for every function  Everything outside of a function scope is inside of the global scope if(true){ var sum = 1+2; var sum = 1+2;}console.log(sum); The scope of the if is the global scope. sum is accessible from everywhere

 The global scope is the scope of the web page  Or the Node.js app  Objects belong to the global scope if:  They are define outside of a function scope  They are defined without var  Fixable with 'use strict' function arrJoin(arr, separator) { separator = separator || ""; separator = separator || ""; arr = arr || []; arr = arr || []; arrString = ""; arrString = ""; for (var i = 0; i < arr.length; i += 1) { for (var i = 0; i < arr.length; i += 1) { arrString += arr[i]; arrString += arr[i]; if (i < arr.length - 1) arrString += separator; if (i < arr.length - 1) arrString += separator; } return arrString; return arrString;}

function arrJoin(arr, separator) { separator = separator || ""; separator = separator || ""; arr = arr || []; arr = arr || []; arrString = ""; arrString = ""; for (var i = 0; i < arr.length; i += 1) { for (var i = 0; i < arr.length; i += 1) { arrString += arr[i]; arrString += arr[i]; if (i < arr.length - 1) arrString += separator; if (i < arr.length - 1) arrString += separator; } return arrString; return arrString;} arr, separator and i belong to the scope of printArr  The global scope is the scope of the web page  Or the Node.js app  Objects belong to the global scope if:  They are define outside of a function scope  They are defined without var  Fixable with 'use strict'

function arrJoin(arr, separator) { separator = separator || ""; separator = separator || ""; arr = arr || []; arr = arr || []; arrString = ""; arrString = ""; for (var i = 0; i < arr.length; i += 1) { for (var i = 0; i < arr.length; i += 1) { arrString += arr[i]; arrString += arr[i]; if (i < arr.length - 1) arrString += separator; if (i < arr.length - 1) arrString += separator; } return arrString; return arrString;} arrString and arrJoin belong to the global scope  The global scope is the scope of the web page  Or the Node.js app  Objects belong to the global scope if:  They are define outside of a function scope  They are defined without var  Fixable with 'use strict' arr, separator and i belong to the scope of printArr

 The global scope is one of the very worst parts of JavaScript  Every object pollutes the global scope, making itself more visible  If two objects with the same identifier appear, the first one will be overridden

Live Demo

 JavaScript does not have a block scope like other programming languages (C#, Java, C++)  { and } does not create a scope!  Yet, JavaScript has a function scope  Function expressions create scope  Function declarations create scope if(true)var result = 5; console.log(result);//logs 5 if(true) (function(){ var result = 5;})(); console.log(result);//ReferenceError function logResult(){ var result = 5; } if(true) logResult(); console.log(result); //ReferenceError

Live Demo

 JavaScript resolves the object references due to the simple rule "Closer is better":  if a function outer() declares object x, and its nested function inner() declares object x:  outer() holds a reference to the outer x  inner() holds a reference to the inner x function outer(){ var x = 'OUTER'; function inner(){ function inner(){ var x = 'INNER'; var x = 'INNER'; return x; return x; } inner(); inner(); return { x: x, f: inner }; return { x: x, f: inner };}

Live Demo

 ECMAScript 6 introduces a new way to handle scopes:  The key word ' let '  let is much like var  Creates a variable  But, let creates a block scope  Yet, still not supported  Can be used with Babel.js or Traceur if(false){ var x = 5; var x = 5; let y = 6; let y = 6;} console.log(x); //prints undefined console.log(y); //throws error

Live Demo

 Closures are a special kind of structure  They combine a function and the context of this function function outer(x){ function inner(y){ function inner(y){ return x + " " + y; return x + " " + y; } return inner; return inner;}

 Closures are a special kind of structure  They combine a function and the context of this function function outer(x){ function inner(y){ function inner(y){ return x + " " + y; return x + " " + y; } return inner; return inner;} inner() forms a closure. It holds a reference to x

 Closures are a special kind of structure  They combine a function and the context of this function function outer(x){ function inner(y){ function inner(y){ return x + " " + y; return x + " " + y; } return inner; return inner;} inner() forms a closure. It holds a reference to x var f1 = outer(5); console.log(f1(7)); //outputs 5 7 In the context of f1, x has value 5

function outer(x){ function inner(y){ function inner(y){ return x + " " + y; return x + " " + y; } return inner; return inner;}  Closures are a special kind of structure  They combine a function and the context of this function var f2 = outer("Peter"); console.log(f2("Petrov")); //outputs Peter Petrov inner() forms a closure. It holds a reference to x var f1 = outer(5); console.log(f1(7)); //outputs 5 7 In the context of f1, x has value 5 In the context of f2, x has value "Peter"

Live Demo

 Closures can be used for data hiding  Make objects invisible to the outside  Make them private var school = (function() { var students = []; var students = []; var teachers = []; var teachers = []; function addStudent(name, grade) {...} function addStudent(name, grade) {...} function addTeacher(name, speciality) {...} function addTeacher(name, speciality) {...} function getTeachers(speciality) {...} function getTeachers(speciality) {...} function getStudents(grade) {...} function getStudents(grade) {...} return { return { addStudent: addStudent, addStudent: addStudent, addTeacher: addTeacher, addTeacher: addTeacher, getTeachers: getTeachers, getTeachers: getTeachers, getStudents: getStudents getStudents: getStudents }; };})();

 Closures can be used for data hiding  Make objects invisible to the outside  Make them private var school = (function() { var students = []; var students = []; var teachers = []; var teachers = []; function addStudent(name, grade) {...} function addStudent(name, grade) {...} function addTeacher(name, speciality) {...} function addTeacher(name, speciality) {...} function getTeachers(speciality) {...} function getTeachers(speciality) {...} function getStudents(grade) {...} function getStudents(grade) {...} return { return { addStudent: addStudent, addStudent: addStudent, addTeacher: addTeacher, addTeacher: addTeacher, getTeachers: getTeachers, getTeachers: getTeachers, getStudents: getStudents getStudents: getStudents }; };})(); This is actually called a Module

Live Demo

форум програмиране, форум уеб дизайн курсове и уроци по програмиране, уеб дизайн – безплатно програмиране за деца – безплатни курсове и уроци безплатен SEO курс - оптимизация за търсачки уроци по уеб дизайн, HTML, CSS, JavaScript, Photoshop уроци по програмиране и уеб дизайн за ученици ASP.NET MVC курс – HTML, SQL, C#,.NET, ASP.NET MVC безплатен курс "Разработка на софтуер в cloud среда" BG Coder - онлайн състезателна система - online judge курсове и уроци по програмиране, книги – безплатно от Наков безплатен курс "Качествен програмен код" алго академия – състезателно програмиране, състезания ASP.NET курс - уеб програмиране, бази данни, C#,.NET, ASP.NET курсове и уроци по програмиране – Телерик академия курс мобилни приложения с iPhone, Android, WP7, PhoneGap free C# book, безплатна книга C#, книга Java, книга C# Николай Костов - блог за програмиране