🔥Limited Offer: Get 50% OFFon AI & Full Stack Courses🔥
Back to JavaScript Notes
Topic #41

Function Parameters

Parameters (Function Input)

Parameters allow you to pass (send) values to a function.

Parameters are listed inside the parentheses in the function definition.

Example

function multiply(a, b) {

  return a * b;

}

let result = multiply(4, 5);

Functions with One Parameter

A function can have one parameter.

Examples

function sayHello(name) {

  return "Hello " + name;

}

let greeting = sayHello("John");

Functions with Multiple Parameters

You can add as many parameters as you want, separated by commas.

Example

function fullName(firstName, lastName) {

  return firstName + " " + lastName;

}

let name = fullName("John", "Doe");

Parameters vs. Arguments

In JavaScript, function parameters and arguments are distinct concepts:

Parameters are the names listed in the function definition.

Arguments are the real values passed to, and received by the function.

Note: Learn More: Function Arguments


Parameter Rules

JavaScript function definitions do not specify data types for parameters.

JavaScript functions do not perform type checking on the arguments.

JavaScript functions do not check the number of arguments received.


Incorrect Parameters

Accessing a function with an incorrect parameter can return an incorrect answer:

Example

function toCelsius(fahrenheit) {

    return (5/9) * (fahrenheit-32);

}

let value = toCelsius();

Default Parameter Values

ECMAScript 2015 allows function parameters to have default values.

The default value is used if no argument is provided.

Example

function myFunction(x, y = 10) {

  return x + y;
}
myFunction(5);

Note: Next Chapter Function Return Values A function can return a value back to the code that called it The return statement is used to return a value from a function

Want to go beyond the notes?

Join CodingNow 2.0's JavaScript course — live mentorship, real projects, and 100% placement support.

Enroll Now — Free Demo Available

Function Parameters – FAQs

Quick answers about learning Function Parameters in JavaScript.

This free note from CodingNow 2.0 explains Function Parameters in JavaScript — concept, syntax and worked code examples you can copy, run and revise before interviews.
Yes. Every JavaScript topic on CodingNow 2.0, including Function Parameters, is 100% free with no signup required.
With focused practice, most students grasp Function Parameters in 1–3 days from these notes; pairing it with CodingNow 2.0's mentor-led course takes you to job-ready depth faster.
Use the code examples in this note, then ask doubts for free on the CodingNow 2.0 Community (/community) — expert instructors answer within 24 hours.
WhatsApp
Call NowEnroll Now