About 10,700,000 results
Open links in new tab
  1. Return statement - Wikipedia

    In computer programming, a return statement causes execution to leave the current subroutine and resume at the point in the code immediately after the instruction which called the …

    Missing:
    • writer
    Must include:
  2. JavaScript return Statement - W3Schools

    The return statement stops the execution of a function and returns a value. Read our JavaScript Tutorial to learn all you need to know about functions. Start with the introduction chapter about …

    Missing:
    • writer
    Must include:
  3. Mastering the `return` Command in Python - CodeRivers

    Feb 5, 2025 · Understanding how to use the `return` command effectively is essential for writing clean, modular, and efficient Python code. This blog post will delve into the fundamental …

  4. What is the purpose of the return statement? How is it ...

    Often, people try to use print in a loop inside a function in order to see multiple values, and want to be able to use the results from outside. They need to be returned, but return exits the …

    Missing:
    • writer
    Must include:
  5. return - JavaScript | MDN

    Jul 8, 2025 · The return statement ends function execution and specifies a value to be returned to the function caller.

    Missing:
    • writer
    Must include:
  6. Python Return Function [With Examples]

    Oct 30, 2024 · The return function is a block of code that, when called, returns the result to the caller. So, the function that returns a value contains a return keyword followed by the result or …

  7. Return Statement in C - GeeksforGeeks

    Jul 23, 2025 · In C, we can only return a single value from the function using the return statement. A C function can have multiple return statements, but only one is executed. Syntax: There are …

    Missing:
    • writer
    Must include: