SlideShare a Scribd company logo
Anonymous 
Functions 
What is an anonymous function?!
Normal function 
function foo() { 
return "Hello World!"; 
}
Anonymous function 
function() { 
} 
-- A function without a name is called an anonymous 
function! 
BUT the above code won’t work... yet
Functions in JS 
Functions in JavaScript are first-class objects. It means 
that, any functions in JS can be treated like an object! 
So… what does it actually mean? What is the advantage?
function sayHello() { 
return "Hello World"; 
} 
sayHello(); 
The advantage 
can be called as 
(sayHello)();
function sayHello() { 
return "Hello World"; 
} 
(sayHello)(); 
The advantage
function sayHello() { 
return "Hello World"; 
} 
(sayHello)(); 
The advantage 
Let’s take this 
whole code
function sayHello() { 
return "Hello World"; 
} 
(sayHello)(); 
The advantage 
Let’s take this 
whole code 
and paste it 
inside there
(function() { 
return "Hello World"; 
})(); 
The refactored code
(function() { 
return "Hello World"; 
})(); 
Now, it’s an anonymous function! The double parenthesis 
at the end of the function declaration will immediately call 
the function just as you would do with: 
(sayHello)(); 
The refactored code
End 
That’s it!
By 
Mohammed Sazid-Al-Rashid 
- Automation Solutionz 
- @sazidz 
- +SazidAlRashid

More Related Content

What's hot (20)

PDF
JavaScript Fetch API
Xcat Liu
 
PPTX
Ajax
Tech_MX
 
PPTX
Clean code
Duc Nguyen Quang
 
PDF
jQuery for beginners
Arulmurugan Rajaraman
 
PDF
JavaScript: Variables and Functions
Jussi Pohjolainen
 
PPTX
Files in php
sana mateen
 
PPTX
Angular js PPT
Imtiyaz Ahmad Khan
 
PPTX
Nodejs functions & modules
monikadeshmane
 
PPTX
What is component in reactjs
manojbkalla
 
PDF
Javascript
Vibhor Grover
 
PPT
Java Collections Framework
Sony India Software Center
 
PPTX
Php technical presentation
dharmendra kumar dhakar
 
PPTX
Clean Code
Dmytro Turskyi
 
PPTX
Intro to React
Justin Reock
 
PDF
JavaScript Programming
Sehwan Noh
 
PPT
A Deeper look into Javascript Basics
Mindfire Solutions
 
PPT
JavaScript: Events Handling
Yuriy Bezgachnyuk
 
PPT
JavaScript & Dom Manipulation
Mohammed Arif
 
ODP
Datatype in JavaScript
Rajat Saxena
 
JavaScript Fetch API
Xcat Liu
 
Ajax
Tech_MX
 
Clean code
Duc Nguyen Quang
 
jQuery for beginners
Arulmurugan Rajaraman
 
JavaScript: Variables and Functions
Jussi Pohjolainen
 
Files in php
sana mateen
 
Angular js PPT
Imtiyaz Ahmad Khan
 
Nodejs functions & modules
monikadeshmane
 
What is component in reactjs
manojbkalla
 
Javascript
Vibhor Grover
 
Java Collections Framework
Sony India Software Center
 
Php technical presentation
dharmendra kumar dhakar
 
Clean Code
Dmytro Turskyi
 
Intro to React
Justin Reock
 
JavaScript Programming
Sehwan Noh
 
A Deeper look into Javascript Basics
Mindfire Solutions
 
JavaScript: Events Handling
Yuriy Bezgachnyuk
 
JavaScript & Dom Manipulation
Mohammed Arif
 
Datatype in JavaScript
Rajat Saxena
 

Viewers also liked (20)

PPTX
Network OS Code Coverage demo using Bullseye tool
Vikram G Hosakote
 
PDF
Anonymous Functions in PHP 5.3 - Matthew Weier O’Phinney
Hipot Studio
 
PDF
Software License An Introduction By Vishnu Kesarwani
Vishnu Kesarwani
 
PDF
Free and Open Source Software, Licenses, Technologies, Scientific Publication...
Frederik Questier
 
PPTX
5 Tips for Better JavaScript
Todd Anglin
 
PDF
Qt Licensing Explained
account inactive
 
PPT
Code coverage
Return on Intelligence
 
ODP
The Nightmare Fuzzing Suite and Blind Code Coverage Fuzzer
Joxean Koret
 
PDF
Code coverage
Vijayan Reddy
 
PDF
An Introduction to Free and Open Source Software Licensing and Business Models
Great Wide Open
 
PPTX
Anonymous and Inline Functions in MATLAB
Shameer Ahmed Koya
 
PPTX
Code coverage analysis in testing
Ni
 
PDF
Code Coverage
Ernani Omar Cruz
 
PDF
1.Buffer Overflows
phanleson
 
PDF
Buffer overflow and other software vulnerabilities: theory and practice of pr...
Roman Oliynykov
 
PDF
Design patterns revisited with PHP 5.3
Fabien Potencier
 
PPTX
Introduction to un supervised learning
Rishikesh .
 
PDF
Building Quality Culture In Agile Software Development
Kaali Dass PMP, PhD.
 
PDF
Free and open source software
Frederik Questier
 
PPTX
Semi-Supervised Learning
Lukas Tencer
 
Network OS Code Coverage demo using Bullseye tool
Vikram G Hosakote
 
Anonymous Functions in PHP 5.3 - Matthew Weier O’Phinney
Hipot Studio
 
Software License An Introduction By Vishnu Kesarwani
Vishnu Kesarwani
 
Free and Open Source Software, Licenses, Technologies, Scientific Publication...
Frederik Questier
 
5 Tips for Better JavaScript
Todd Anglin
 
Qt Licensing Explained
account inactive
 
Code coverage
Return on Intelligence
 
The Nightmare Fuzzing Suite and Blind Code Coverage Fuzzer
Joxean Koret
 
Code coverage
Vijayan Reddy
 
An Introduction to Free and Open Source Software Licensing and Business Models
Great Wide Open
 
Anonymous and Inline Functions in MATLAB
Shameer Ahmed Koya
 
Code coverage analysis in testing
Ni
 
Code Coverage
Ernani Omar Cruz
 
1.Buffer Overflows
phanleson
 
Buffer overflow and other software vulnerabilities: theory and practice of pr...
Roman Oliynykov
 
Design patterns revisited with PHP 5.3
Fabien Potencier
 
Introduction to un supervised learning
Rishikesh .
 
Building Quality Culture In Agile Software Development
Kaali Dass PMP, PhD.
 
Free and open source software
Frederik Questier
 
Semi-Supervised Learning
Lukas Tencer
 
Ad

Similar to Anonymous functions in JavaScript (8)

PPTX
11_Functions_Introduction.pptx javascript notes
tayyabbiswas2025
 
PPTX
Javascript Tip and Triks
Eb Styles
 
PPTX
predefined and user defined functions
Swapnil Yadav
 
PDF
JavaScript Interview Questions 2023
Laurence Svekis ✔
 
PDF
Javascript scoping
Aditya Gaur
 
PPTX
Java script function
suresh raj sharma
 
PDF
Callback Function
Roland San Nicolas
 
PPTX
Lecture 4- Javascript Function presentation
GomathiUdai
 
11_Functions_Introduction.pptx javascript notes
tayyabbiswas2025
 
Javascript Tip and Triks
Eb Styles
 
predefined and user defined functions
Swapnil Yadav
 
JavaScript Interview Questions 2023
Laurence Svekis ✔
 
Javascript scoping
Aditya Gaur
 
Java script function
suresh raj sharma
 
Callback Function
Roland San Nicolas
 
Lecture 4- Javascript Function presentation
GomathiUdai
 
Ad

Recently uploaded (20)

PPTX
Writing Better Code - Helping Developers make Decisions.pptx
Lorraine Steyn
 
PDF
Streamline Contractor Lifecycle- TECH EHS Solution
TECH EHS Solution
 
PDF
Alexander Marshalov - How to use AI Assistants with your Monitoring system Q2...
VictoriaMetrics
 
PPTX
Equipment Management Software BIS Safety UK.pptx
BIS Safety Software
 
PPTX
Why Businesses Are Switching to Open Source Alternatives to Crystal Reports.pptx
Varsha Nayak
 
PDF
Capcut Pro Crack For PC Latest Version {Fully Unlocked} 2025
hashhshs786
 
PPTX
A Complete Guide to Salesforce SMS Integrations Build Scalable Messaging With...
360 SMS APP
 
PDF
Beyond Binaries: Understanding Diversity and Allyship in a Global Workplace -...
Imma Valls Bernaus
 
PDF
Efficient, Automated Claims Processing Software for Insurers
Insurance Tech Services
 
PDF
Powering GIS with FME and VertiGIS - Peak of Data & AI 2025
Safe Software
 
PPTX
An Introduction to ZAP by Checkmarx - Official Version
Simon Bennetts
 
PDF
GetOnCRM Speeds Up Agentforce 3 Deployment for Enterprise AI Wins.pdf
GetOnCRM Solutions
 
DOCX
Import Data Form Excel to Tally Services
Tally xperts
 
PDF
Alarm in Android-Scheduling Timed Tasks Using AlarmManager in Android.pdf
Nabin Dhakal
 
PDF
Executive Business Intelligence Dashboards
vandeslie24
 
PPTX
Tally software_Introduction_Presentation
AditiBansal54083
 
PDF
Salesforce CRM Services.VALiNTRY360
VALiNTRY360
 
PDF
Linux Certificate of Completion - LabEx Certificate
VICTOR MAESTRE RAMIREZ
 
PPTX
Comprehensive Guide: Shoviv Exchange to Office 365 Migration Tool 2025
Shoviv Software
 
PDF
HiHelloHR – Simplify HR Operations for Modern Workplaces
HiHelloHR
 
Writing Better Code - Helping Developers make Decisions.pptx
Lorraine Steyn
 
Streamline Contractor Lifecycle- TECH EHS Solution
TECH EHS Solution
 
Alexander Marshalov - How to use AI Assistants with your Monitoring system Q2...
VictoriaMetrics
 
Equipment Management Software BIS Safety UK.pptx
BIS Safety Software
 
Why Businesses Are Switching to Open Source Alternatives to Crystal Reports.pptx
Varsha Nayak
 
Capcut Pro Crack For PC Latest Version {Fully Unlocked} 2025
hashhshs786
 
A Complete Guide to Salesforce SMS Integrations Build Scalable Messaging With...
360 SMS APP
 
Beyond Binaries: Understanding Diversity and Allyship in a Global Workplace -...
Imma Valls Bernaus
 
Efficient, Automated Claims Processing Software for Insurers
Insurance Tech Services
 
Powering GIS with FME and VertiGIS - Peak of Data & AI 2025
Safe Software
 
An Introduction to ZAP by Checkmarx - Official Version
Simon Bennetts
 
GetOnCRM Speeds Up Agentforce 3 Deployment for Enterprise AI Wins.pdf
GetOnCRM Solutions
 
Import Data Form Excel to Tally Services
Tally xperts
 
Alarm in Android-Scheduling Timed Tasks Using AlarmManager in Android.pdf
Nabin Dhakal
 
Executive Business Intelligence Dashboards
vandeslie24
 
Tally software_Introduction_Presentation
AditiBansal54083
 
Salesforce CRM Services.VALiNTRY360
VALiNTRY360
 
Linux Certificate of Completion - LabEx Certificate
VICTOR MAESTRE RAMIREZ
 
Comprehensive Guide: Shoviv Exchange to Office 365 Migration Tool 2025
Shoviv Software
 
HiHelloHR – Simplify HR Operations for Modern Workplaces
HiHelloHR
 

Anonymous functions in JavaScript