Skip to main content

JavaScript Functions | Function Declaration and Expression - Arrow Function - Function Parameters and Return - Basic syntax and usage of JavaScript functions

JavaScript Functions:

JavaScript functions are blocks of code designed to perform a specific task. They are defined using the function keyword and can be invoked (called) at any point in a program. 

Here is the basic syntax and usage of JavaScript functions:

Function Declaration:

javascript
// Function declaration
function greet(name) {
  console.log("Hello, " + name + "!");
}

// Function invocation
greet("John"); // Output: Hello, John!

Function Declaration and Expression - Arrow Function - Function Parameters and Return - Basic syntax and usage of JavaScript functions
JavaScript Functions
In the example above:
greet is the function name.
(name) is the parameter list. Functions can accept parameters (input).
The function body is enclosed in curly braces {} and contains the code to be executed.
console.log is a built-in JavaScript function that outputs information to the console.

Function Expression:

javascript
// Function expression
var add = function (a, b) {
  return a + b;
};

// Function invocation
var result = add(3, 5);
console.log(result); // Output: 8

In this example:
add is a variable holding an anonymous function.
The function is assigned to the variable using the = operator.
The function can be invoked using the variable name (add).

Arrow Function (ES6+):

javascript
// Arrow function
const multiply = (a, b) => a * b;

// Function invocation
const product = multiply(4, 6);
console.log(product); // Output: 24

Arrow functions provide a concise syntax, especially useful for short functions.

Function Parameters and Return:

javascript
// Function with parameters and return statement
function square(number) {
  return number * number;
}

var squaredValue = square(4);
console.log(squaredValue); // Output: 16


Functions can have parameters that act as placeholders for values passed during invocation.
The return statement is used to specify the value the function should return.

Default Parameters (ES6+):

javascript
// Function with default parameter
function power(base, exponent = 2) {
  return Math.pow(base, exponent);
}

var result1 = power(3);
var result2 = power(3, 4);

console.log(result1); // Output: 9
console.log(result2); // Output: 81


Default parameters allow you to specify a default value for a parameter if one is not provided.

Rest Parameters (ES6+):

javascript
// Function with rest parameter
function sum(...numbers) {
  return numbers.reduce((total, num) => total + num, 0);
}

var totalSum = sum(1, 2, 3, 4, 5);
console.log(totalSum); // Output: 15


The rest parameter (...numbers) allows a function to accept an indefinite number of arguments as an array.

Scope of Variables:

JavaScript has two types of variable scope:
Global Scope: Variables declared outside any function are global and can be accessed throughout the program.
Local Scope: Variables declared inside a function are local and can only be accessed within that function.

javascript
var globalVar = "I am global"; // Global variable

function example() {
  var localVar = "I am local"; // Local variable
  console.log(globalVar); // Accessible
}

example();
console.log(localVar); // Error: localVar is not defined

Understanding scope is crucial for avoiding naming conflicts and managing variable lifetimes.

These are the fundamental concepts of JavaScript functions. They play a key role in organizing code, promoting reusability, and encapsulating logic in a program.

Comments

Popular posts from this blog

Biography of Manohar Joshi

Biography of Manohar Joshi: Manohar Gajanan Joshi is an Indian politician who has played a significant role in Maharashtra state politics. Born on December 2, 1937, in a middle-class family in a village called Ganeshpeth in Ratnagiri district, Maharashtra, Joshi's journey into politics was marked by his association with the Shiv Sena, a right-wing regional political party in India. Joshi's political career began in the late 1960s when he joined the Shiv Sena, which was then led by its founder, Bal Thackeray. He quickly rose through the ranks of the party due to his organizational skills, dedication, and ideological alignment with the party's principles, which advocated for the interests of the Marathi-speaking population of Maharashtra. In 1972, Manohar Joshi won his first election to the Brihanmumbai Municipal Corporation (BMC), marking the beginning of his electoral career. He served as a corporator in the BMC and later became the Mayor of Mumbai in 1976. Joshi's tenu...

Merry Christmas Messages and Statuses | History and Celebration Christmas - Happy Christmas Status and Messages for Social Media

Merry Christmas Messages and Statuses: Wishing you a Merry Christmas 2023! Here are some messages and statuses that you can share with your loved ones: "May your Christmas be filled with joy, laughter, and love. Wishing you a wonderful holiday season!". "Sending you warm wishes and good cheer this Christmas. Have a great time with your family and friends!". "May the spirit of Christmas fill your heart with peace and happiness. Merry Christmas!". "Wishing you a magical and blissful holiday season. Have a Merry Christmas and prosperous New Year!". "May this Christmas bring you all the love and luck in the world. Merry Christmas and a Happy New Year!". Wishing you a Merry Christmas 2023 Here are some Christmas messages that you can use to wish your friends and family a Merry Christmas: 1. Wishing you a Christmas filled with joy, love, and laughter. May the spirit of Christmas bring warmth to your heart and happiness to your home. 2. May y...

Biography of Alexander Pope | Early Life and Literary Beginnings - Major Works and Personal Life - Later Years and Death of Alexander Pope

Biography of Alexander Pope: Alexander Pope (1688–1744) was an English poet, satirist, and critic of the Augustan period, best known for his satirical verse and his mastery of the heroic couplet.  Here is a brief biography of Alexander Pope: Early Life of Alexander Pope: 1. Birth: Alexander Pope was born on May 21, 1688, in London, England. 2. Health Challenges: Pope suffered from various health issues from an early age, including Pott's disease (a form of tuberculosis that affects the spine) which left him with a hunched back and stunted growth. Professor Cheiro Prophecies about India : Kiro made these amazing predictions for India Literary Beginnings: 1. Early Education: Pope was largely self-taught, having been denied formal education as a Catholic during a period of anti-Catholic sentiment in England. 2. Debut Poem: His first major work, "Pastorals," was published in 1709, and he gained recognition in literary circles. Parada Kahanee Major Works of Alexander Pope:...