×
1 Choose EITC/EITCA Certificates
2 Learn and take online exams
3 Get your IT skills certified

Confirm your IT skills and competencies under the European IT Certification framework from anywhere in the world fully online.

EITCA Academy

Digital skills attestation standard by the European IT Certification Institute aiming to support Digital Society development

SIGN IN YOUR ACCOUNT TO HAVE ACCESS TO DIFFERENT FEATURES

CREATE AN ACCOUNT FORGOT YOUR PASSWORD?

FORGOT YOUR DETAILS?

AAH, WAIT, I REMEMBER NOW!

CREATE ACCOUNT

ALREADY HAVE AN ACCOUNT?
EUROPEAN INFORMATION TECHNOLOGIES CERTIFICATION ACADEMY - ATTESTING YOUR PROFESSIONAL DIGITAL SKILLS
  • SIGN UP
  • LOGIN
  • SUPPORT

EITCA Academy

EITCA Academy

The European Information Technologies Certification Institute - EITCI ASBL

Certification Provider

EITCI Institute ASBL

Brussels, European Union

Governing European IT Certification (EITC) framework in support of the IT professionalism and Digital Society

  • CERTIFICATES
    • EITCA ACADEMIES
      • EITCA ACADEMIES CATALOGUE<
      • EITCA/CG COMPUTER GRAPHICS
      • EITCA/IS INFORMATION SECURITY
      • EITCA/BI BUSINESS INFORMATION
      • EITCA/KC KEY COMPETENCIES
      • EITCA/EG E-GOVERNMENT
      • EITCA/WD WEB DEVELOPMENT
      • EITCA/AI ARTIFICIAL INTELLIGENCE
    • EITC CERTIFICATES
      • EITC CERTIFICATES CATALOGUE<
      • COMPUTER GRAPHICS CERTIFICATES
      • WEB DESIGN CERTIFICATES
      • 3D DESIGN CERTIFICATES
      • OFFICE IT CERTIFICATES
      • BITCOIN BLOCKCHAIN CERTIFICATE
      • WORDPRESS CERTIFICATE
      • CLOUD PLATFORM CERTIFICATENEW
    • EITC CERTIFICATES
      • INTERNET CERTIFICATES
      • CRYPTOGRAPHY CERTIFICATES
      • BUSINESS IT CERTIFICATES
      • TELEWORK CERTIFICATES
      • PROGRAMMING CERTIFICATES
      • DIGITAL PORTRAIT CERTIFICATE
      • WEB DEVELOPMENT CERTIFICATES
      • DEEP LEARNING CERTIFICATESNEW
    • CERTIFICATES FOR
      • EU PUBLIC ADMINISTRATION
      • TEACHERS AND EDUCATORS
      • IT SECURITY PROFESSIONALS
      • GRAPHICS DESIGNERS & ARTISTS
      • BUSINESSMEN AND MANAGERS
      • BLOCKCHAIN DEVELOPERS
      • WEB DEVELOPERS
      • CLOUD AI EXPERTSNEW
  • FEATURED
  • SUBSIDY
  • HOW IT WORKS
  •   IT ID
  • ABOUT
  • CONTACT
  • MY ORDER
    Your current order is empty.
EITCIINSTITUTE
CERTIFIED

What happens if a JavaScript function does not include a return statement? What value is returned by default?

by EITCA Academy / Tuesday, 21 May 2024 / Published in Web Development, EITC/WD/JSF JavaScript Fundamentals, Functions in JavaScript, Return statement, Examination review

In JavaScript, functions are a fundamental building block used to encapsulate reusable code. When a function is defined, it can include a `return` statement, which specifies the value that the function should output when it is called. However, it is not mandatory for a JavaScript function to include a `return` statement. If a function does not include a `return` statement, it does not mean that the function will not return a value; rather, it will return a predefined value by default.

When a JavaScript function does not include a `return` statement, it implicitly returns `undefined`. This behavior is part of the JavaScript language specification and is consistent across all JavaScript environments, including browsers and server-side environments like Node.js.

To explain this behavior in detail, consider the following example:

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

let result = greet("Alice");
console.log(result); // Output: undefined

In this example, the `greet` function takes a single parameter `name` and prints a greeting message to the console. The function does not include a `return` statement. When the function is called with the argument `"Alice"`, it performs its task of logging the greeting message, but since there is no `return` statement, the function implicitly returns `undefined`. This is evident when we assign the result of the function call to the variable `result` and then log `result` to the console, which outputs `undefined`.

To further illustrate the concept, consider another example where a function is conditionally returning a value:

javascript
function checkEven(number) {
    if (number % 2 === 0) {
        return true;
    }
    // No return statement for odd numbers
}

let isEven = checkEven(4);
console.log(isEven); // Output: true

isEven = checkEven(3);
console.log(isEven); // Output: undefined

In this example, the `checkEven` function checks if the given `number` is even. If the number is even, the function returns `true`. However, if the number is odd, the function does not include a `return` statement, and thus it implicitly returns `undefined`. When the function is called with the argument `4`, it returns `true` because `4` is even. When the function is called with the argument `3`, it returns `undefined` because `3` is odd and there is no explicit `return` statement for this case.

It is important to note that `undefined` is a special value in JavaScript that represents the absence of a meaningful value. The `undefined` value is distinct from other values such as `null`, `0`, `false`, and an empty string (`""`). The `undefined` value is often used to indicate that a variable has been declared but has not yet been assigned a value, or that a function does not return a meaningful value.

In some cases, returning `undefined` may be intentional and appropriate. For example, a function that performs a side effect, such as logging information to the console or modifying the DOM, may not need to return a value:

javascript
function updateElementText(id, text) {
    let element = document.getElementById(id);
    if (element) {
        element.textContent = text;
    }
    // No return statement needed
}

updateElementText("myElement", "New text content");

In this example, the `updateElementText` function updates the text content of a DOM element with the specified `id`. The function performs its task without needing to return a value, so it implicitly returns `undefined`.

However, in other cases, it may be beneficial to explicitly return a value to provide clarity and avoid potential bugs. For example, if a function is expected to return a value based on certain conditions, it is good practice to ensure that all code paths include a `return` statement:

javascript
function getDiscountedPrice(price, discount) {
    if (price < 0 || discount < 0) {
        return undefined; // Explicitly return undefined for invalid inputs
    }
    return price - (price * discount);
}

let discountedPrice = getDiscountedPrice(100, 0.2);
console.log(discountedPrice); // Output: 80

discountedPrice = getDiscountedPrice(-100, 0.2);
console.log(discountedPrice); // Output: undefined

In this example, the `getDiscountedPrice` function calculates the discounted price based on the original `price` and the `discount` rate. If either the `price` or the `discount` is negative, the function explicitly returns `undefined` to indicate invalid input. Otherwise, it returns the calculated discounted price. This approach ensures that the function's behavior is clear and predictable, and it avoids unintended `undefined` values.

When a JavaScript function does not include a `return` statement, it implicitly returns `undefined`. This behavior is consistent and part of the language specification. It is essential for developers to understand this behavior to write clear and predictable code. In some scenarios, returning `undefined` may be appropriate, while in others, it may be beneficial to explicitly return a value to provide clarity and avoid potential bugs.

Other recent questions and answers regarding EITC/WD/JSF JavaScript Fundamentals:

  • What are higher-order functions in JavaScript, and how can they be used to execute functions indirectly?
  • How does the use of global variables or constants help in executing functions that require arguments within event listeners?
  • Why is it important to convert user input from HTML elements to numbers when performing arithmetic operations in JavaScript?
  • What is the difference between passing a function reference with and without parentheses when setting up an event listener in JavaScript?
  • How can you correctly set up an event listener to execute a function named `add` when a button is clicked without immediately invoking the function?
  • How does the placement of the return statement within a function affect the flow of the function's execution?
  • Can a JavaScript function contain multiple return statements, and if so, how does it determine which one to execute?
  • How can the return statement be used to pass data from a function to the calling code?
  • What is the purpose of the return statement in a JavaScript function and how does it affect the function's execution?
  • Why a developer would choose to use local scope variables in JavaScript?

View more questions and answers in EITC/WD/JSF JavaScript Fundamentals

More questions and answers:

  • Field: Web Development
  • Programme: EITC/WD/JSF JavaScript Fundamentals (go to the certification programme)
  • Lesson: Functions in JavaScript (go to related lesson)
  • Topic: Return statement (go to related topic)
  • Examination review
Tagged under: Functions, JavaScript, Programming, Return Statement, Undefined, Web Development
Home » EITC/WD/JSF JavaScript Fundamentals / Examination review / Functions in JavaScript / Return statement / Web Development » What happens if a JavaScript function does not include a return statement? What value is returned by default?

Certification Center

USER MENU

  • My Account

CERTIFICATE CATEGORY

  • EITC Certification (106)
  • EITCA Certification (9)

What are you looking for?

  • Introduction
  • How it works?
  • EITCA Academies
  • EITCI DSJC Subsidy
  • Full EITC catalogue
  • Your order
  • Featured
  •   IT ID
  • EITCA reviews (Reddit publ.)
  • About
  • Contact
  • Cookie Policy (EU)

EITCA Academy is a part of the European IT Certification framework

The European IT Certification framework has been established in 2008 as a Europe based and vendor independent standard in widely accessible online certification of digital skills and competencies in many areas of professional digital specializations. The EITC framework is governed by the European IT Certification Institute (EITCI), a non-profit certification authority supporting information society growth and bridging the digital skills gap in the EU.

    EITCA Academy Secretary Office

    European IT Certification Institute ASBL
    Brussels, Belgium, European Union

    EITC / EITCA Certification Framework Operator
    Governing European IT Certification Standard
    Access contact form or call +32 25887351

    Follow EITCI on Twitter
    Visit EITCA Academy on Facebook
    Engage with EITCA Academy on LinkedIn
    Check out EITCI and EITCA videos on YouTube

    Funded by the European Union

    Funded by the European Regional Development Fund (ERDF) and the European Social Fund (ESF), governed by the EITCI Institute since 2008

    Information Security Policy | DSRRM and GDPR Policy | Data Protection Policy | Record of Processing Activities | HSE Policy | Anti-Corruption Policy | Modern Slavery Policy

    Automatically translate to your language

    Terms and Conditions | Privacy Policy
    Follow @EITCI
    EITCA Academy

    Your browser doesn't support the HTML5 CANVAS tag.

    • Artificial Intelligence
    • Cloud Computing
    • Quantum Information
    • Web Development
    • Cybersecurity
    • GET SOCIAL
    EITCA Academy


    © 2008-2026  European IT Certification Institute
    Brussels, Belgium, European Union

    TOP
    CHAT WITH SUPPORT
    Do you have any questions?
    We will reply here and by email. Your conversation is tracked with a support token.