
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Function Overloading in JavaScript
JavaScript does not support Function Overloading. The following shows function overloading −
function funcONE(x,y) { return x*y; } function funcONE(z) { return z; }
The above will not show an error, but you won't get desired results. On calling,
// prints 5 funcONE(5); // prints 5, not 30 funcONE(5,6);
JavaScript does not support function overloading natively. If we will add functions with the same name and different arguments, it considers the last defined function.
Advertisements