
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
Define a Function in JavaScript
The most common way to define a function in JavaScript is by using the “function” keyword, followed by a unique function name, a list of parameters (that might be empty), and a statement block surrounded by curly braces.
Syntax
Here’s the syntax −
<script> <!-- function functionname(parameter-list) { statements } //--> </script>
Try the following example. It defines a function called sayHello that takes no parameters,
<script> <!-- function sayHello() { alert("Hello World!"); } //--> </script>
Advertisements