“Funkcja JavaScript Powrót” Kod odpowiedzi

Funkcja JQuery Powrót

function myFunction(p1, p2) {
  var a = "";
  $.ajax({
    method: "POST",
    url: "/url",
    data: {p1: p1,p2: p2},
    success: function (data) {a = data.result;},
    error: function (data) {a = data.result;}
    });
  return a;
}
Spotless Swan

Co Return robi w JavaScript

function add(a, b) {
  return a + b; //Return stops the execution of this function
}

var sum = add(5, 24); //The value that was returned got but inside the variable sum
TC5550

Funkcja JavaScript Powrót

// program to add two numbers
// declaring a function
function add(a, b) {
    return a + b;
}

// take input from the user
let number1 = parseFloat(prompt("Enter first number: "));
let number2 = parseFloat(prompt("Enter second number: "));

// calling function
let result = add(number1,number2);

// display the result
console.log("The sum is " + result);
SAMER SAEID

Odpowiedzi podobne do “Funkcja JavaScript Powrót”

Pytania podobne do “Funkcja JavaScript Powrót”

Więcej pokrewnych odpowiedzi na “Funkcja JavaScript Powrót” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu