If you have experience in JavaScript then I am sure you have heard about functions in JS are first class object. In this post I will try my best to explain about functions in JS as an object.
There are many ways to create functions in JS, you can get to know about this in this post: Number of ways to create function
We can add property in any function as we add in any object:
var MyObj = {}; // creating object MyObj.prop1 = "value1"; // Added one property console.log(MyObj.prop1); // logs: value1 // creating function function MyFun(arg1, arg2) { return arg1 + arg2; } // adding property in function, and function behave as an object MyFun.property1 = "funPropValue1"; console.log(MyFun.property1); // logs: funPropValue1Above code shows that function behave in same way as object while adding new property in function.
Pass function in another function as an argument
In below code a method is passed in function argument, and it executes successfully:var MyObj = {}; MyObj.prop1 = "value1"; MyObj.logValue = function (value) { console.log(value); } function MyFun(arg1, argFun) { var myVal = 1; myVal++; argFun(myVal); } MyFun(12, MyObj.logValue); // logs: 2As we can perform operations similar to object in functions we can say that functions are first class object in JavaScript.
You also like to know about:
- Do you know what happens when you hit url www.goolge.com?
- Know about Debouncing & Throttling
- AngularJS advanced trick and techniques
- Restrict input to allow only required value (jQuery plugin for input type validation)
- Spread operator or Rest parameter or Ellipsis in JavaScript
- Why call and apply two methods available in JavaScript
- Automatic Form Input Validation for complete site
- Number of ways you can create function in JavaScript +what are they called
- JavaScript Native objects
- How to Create private function in JavaScript
- functions as first class object in JavaScript
- Object Oriented concept in JavaScript
- Advanced JavaScript questions
- One good way to declare Global Variables in JavaScript
- how to align elements in a row with equal space around
- Closures in JavaScript
- AJAX call in AngularJS for cross domain service using JSONP
- Cross Site Scripting in WCF Web Service. How to use AJAX in JavaScript to Get/Consume JSON from WCF in C#
- How to add AngularJS in rails application
- Git configuration all about
- Pass XML file in stored procedure as a input parameter from C#
- XML Parser in SQL Server (T-SQL), How to parse XML in SQL
- Wish your friend with your own words and love
- Create Message in Hindi by typing in Hinglish
- Convert Multiline Text Into Single Line for HTML page
No comments:
Post a Comment