Functions and Function Expressions Closures, Function Scope, Nested Functions Telerik Software Academy

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
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.
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
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.
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.
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
Subroutines in Computer Programming Telerik School Academy C# Fundamentals – Part 1.
Correctly Formatting the Source Code Nikolay Kostov Telerik Software Academy academy.telerik.com Senior Software Developer and 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.
Things start to get serious Telerik Software Academy JavaScript OOP.
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
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.
Functions and Function Expressions Closures, Function Scope, Nested Functions, IIFE Software University Technical Trainers SoftUni Team.
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
Definition, Constructors, Methods, Access Modifiers, Static/Instance members, Learning & Development Team Telerik Software Academy.
Functions and Function Expressions
Functions Declarations, Function Expressions and IIFEs
Presentation transcript:

Functions and Function Expressions Closures, Function Scope, Nested Functions Telerik Software Academy

2 Table of Contents Functions in JavaScript Function object Defining Functions Function declarations Function expressions Function constructor Expression vs. declaration Function properties Function methods

3 Table of Contents Scope Global and function Nested functions Immediately-invoked function expressions Closures

4 Functions in JavaScript Functions are small named snippets of code Can be invoked using their identifier (name) Functions can take parameters Parameters can be of any type Each function gets two special objects arguments contains all passed arguments this contains information about the context Different depending of the way the function is used Function can return a result of any type undefined is returned if no return statement

5 Functions usage function max (arr) { var maxValue = arr[0]; for (var i = 1; i < arr.length; i++) { maxValue = Math.max(maxValue, arr[i]); } return maxValue; } function printMsg(msg){ console.log(msg); }

Creating Functions Many ways to create functions: Function declaration: function printMsg (msg) {console.log(msg);} var printMsg = function () {console.log(msg);} var printMsg = new Function("msg",'console.log("msg");'); Function expression With function constructor Since functions are quite special in JavaScript, they are loaded as soon as possible

Function Declaration Function declarations use the function operator to create a function object Function declarations are loaded first in their scope No matter where they appear This allows using a function before it is defined printMsg("Hello"); function printMsg(msg){ console.log("Message: " + msg); }

Function Expression Function expressions are created using the function literal They are loaded where they are defined And cannot be used beforehand Can be invoked immediately The name of function expressions is optional If the name is missing the function is anonymous var printMsg = function (msg){ console.log("Message: " + msg); } printMsg("Hello");

Function Expression (2) Function expressions do no need an identifier It is optional Still it is better to define it for easier debugging Otherwise the debuggers show anonymous Types of function expressions var printMsg = function (msg){ console.log("Message: " + msg); } var printMsg = function printMsg(msg) { console.log("Message: " + msg); } (function(){…});

Function Methods Functions have methods as well function.toString() Returns the code of the functions as a string function.call(obj, args) Calls the function over the obj with args function.apply(obj, arrayOfArgs) Applies the function over obj using the arrayOfArgs as arguments Basically call and apply to the same One gets args, the other gets array of args

Call and Apply function.apply(obj, arrayOfargs) applies the function over an specified object, with specified array of arguments Each function has a special object this function.call(obj,arg1,arg2…) calls the function over an specified object, with specified arguments The arguments are separated with commas apply() and call() do the same with difference in the way they receive arguments

Call and Apply function.apply(obj, arrayOfargs) applies the function over an specified object, with specified array of arguments Each function has a special object this By invoking apply/call, obj is assigned to this var numbers = […]; var max = Math.max.apply (null, numbers); function printMsg(msg){ console.log("Message: " + msg); } printMsg.apply(null, ["Important message"]); //here this is null, since it is not used anywhere in //the function //more about this in OOP

Live Demo

Scope 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; } console.log(sum);

Global Scope The global scope is the scope of the web page 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 || ""; arr = arr || []; arrString = ""; for (var i = 0; i < arr.length; i += 1) { arrString += arr[i]; if (i < arr.length - 1) arrString += separator; } return arrString; }

Global Scope (2) 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

Function Scope 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

Nested Functions Functions in JavaScript can be nested No limitation of the level of nesting function compare(str1, str2, caseSensitive) { if(caseSensitive) return compareCaseSensitive(str1,str2) else return compareCaseInsesitive(str1,str2); function compareCaseSensitive(str1, str2) { … } function compareCaseInsesitive(str1, str2) { … } }

Nested Functions (2) Which function has access to which objects and arguments? It's all about scope! Objects can access the scope they are in And objects in the scope they are in can access the scope where they are in, and so on… Also called closure The innermost scope can access everything above it function compare(str1, str2, caseSensitive) { if(caseSensitive) return compareCaseSensitive(str1,str2) else return compareCaseInsesitive(str1,str2); function compareCaseSensitive(str1, str2) { … } function compareCaseInsesitive(str1, str2) { … } }

Nested Functions: Example var str = “string” //global function outer(o1, o2) { //outer function inner1(i1, i2, i3) { //inner1 function innerMost(im1) { //innerMost … } //end of innerMost } //end of inner1 function inner2(i1, i2, i3) { //inner2 … } //end of inner2 } //end of outer //global Objects can access the scope they are in outer() can access the global scope inner1() can access the scope of outer() and the global scope

Nested Functions (3) What about objects with the same name? If in the same scope – the bottommost object If not in the same scope – the object in the innermost scope function compare(str1, str2, caseSensitive) { if(caseSensitive) return compareCaseSensitive(str1,str2) else return compareCaseInsesitive(str1,str2); function compareCaseSensitive(str1, str2) { //here matter str1 and str2 in compareCaseSensitive } function compareCaseInsesitive(str1, str2) { //here matter str1 and str2 in compareCaseInsensitive }

Live Demo

Immediately Invoked Function Expressions In JavaScript, functions expressions can be invoked immediately after they are defined Can be anonymous Create a function scope Don't pollute the global scope Handle objects with the same identifier IIFE must be always an expression Otherwise the browsers don't know what to do with the declaration

Valid IIFE Valid IIFEs In all cases the browser must be explicitly told that the thing before () is an expression IIFEs are primary used to create function scope And prevent naming collisions var iife = function(){ console.log("invoked!"); }(); (function(){ console.log("invoked!"); }()); (function(){ console.log("invoked!"); })(); !function(){ console.log("invoked!"); }(); true && function(){console.log("invoked!"); }(); 1 + function(){console.log("invoked!"); }();

Live Demo

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

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

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# Николай Костов - блог за програмиране