JavaScript の return とは? また、return 関数を使用する利点は何ですか? これを行うことで16を取得することもできます-
var number = function ( ok ){
confirm( 8 * ok );
}
number(2);
__ _ __ _ _ __ _ _ __ _ ____ … < /p >
では、 return 関数を使用する利点は何ですか?
var timesTwo = function(number) {
return number * 2;
};
var newNumber = timesTwo (8);
confirm(newNumber);
ところで、リターンは例に使用されます:---->
var timesTwo = function(number) {
return number * 2;
};
var newNumber = timesTwo (8);
if ( newNumber === 16 ){
confirm("success");
}
else{
confirm("failure");
}
私は正しいですか?If-Elseやその他のコードには関数のみを使用できないと思うので、return used ??