Advanced JavaScript Series - Part 7: First Class Citizens & Higher Order Functions
Pranav
Posted on January 20, 2022
First Class Citizens
First-class citizenship simply means being able to do what everyone else can do. In JavaScript, functions are objects (hence the designation of first-class object).
JavaScript has all those abilities or features that are required to be a language having First Class Functions, hence functions are treated as First Class Citizens.
Let’s look at all the abilities of functions being a First Class Citizen.
1. Ability to treat functions as values-
Code-
var hello = function(){
return "hello world"
}
console.log(hello())
Output-
"hello world"
2. Ability to Pass functions as arguments-
Code-
function hello(fn){
fn()
}
hello(function() { console.log("hello world") })
Output-
"hello world"
3. Ability return a function from another function-
Code-
function hello(){
return function() {
return "hello world"
}
}
var hi=hello()
console.log(hi())
Output-
"hello world"
- Because this behavior of JS functions as first class citizens, we are also able to do functional programming that we will learn more about in further parts of our series.
Higher Order Functions-
A higher order function is a function that takes a function as an argument, or returns a function.
Simplified Example-
Code-
const multiplyBy = (num1) => {
return function (num2) {
return num1 * num2;
}
}
const multiplyByTwo = multiplyBy(2);
multiplyByTwo(4)
Output-
8
Connect with me-
Appendix-
- Advanced JavaScript Series - Part 1: Behind the scenes (JavaScript Engine, ATS, Hidden Classes, Garbage Collection)
- Advanced JavaScript Series - Part 2: Execution Context and Call Stack
- Advanced JavaScript Series - Part 3: Weird JS behavior, Strict Mode and Hoisting, Temporal Dead Zone
- Advanced JavaScript Series - Part 4.1: Global, Function and Block Scope, Lexical vs Dynamic Scoping
- Advanced JavaScript Series - Part 4.2: Scope Chains and their working, Lexical and Variable Environments
- Advanced JavaScript Series - Part 5: IIFE & 'this' keyword in JS(tricky Eg.), call(), apply(), bind(), Currying(Functional Prog)
- Advanced JavaScript Series - Part 6.1: Everything in JS is an Object? Weird JS behaviors revealed, Primitive Non-Primitive Types
- Advanced JavaScript Series - Part 6.2: Pass by Value & Pass by Reference, Shallow & Deep Copy, Type Coercion
- Advanced JavaScript Series - Part 7: First Class Citizens & Higher Order Functions
- Advanced JavaScript Series - Part 8: The 2 Pillars~ Closures & Prototypal Inheritance
- Advanced JavaScript Series - Part 9: Constructor Functions, Object Oriented,
new
keyword
References-
💖 💪 🙅 🚩
Pranav
Posted on January 20, 2022
Join Our Newsletter. No Spam, Only the good stuff.
Sign up to receive the latest update from our blog.
Related
javascript Mastering the Mysteries of JavaScript Syntax: Discover the Secrets Behind These Symbols
September 28, 2024