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
How can I check if a JavaScript function is defined?
To check if a JavaScript function is defined or not, checks it with “undefined”.
Example
You can try to run the following example to check for a function is defined or not in JavaScript −
<!DOCTYPE html>
<html>
<body>
<script>
function display() {
alert("Demo Text!");
}
if ( typeof(display) === 'undefined') {
document.write('undefined');
} else {
document.write("Function is defined");
}
</script>
</body>
</html>Advertisements