返り値とは??
returnとは、関数に与えた値が処理された結果の値のこと
*returnの後に処理を書いても実行されない
足し算
function score(a, b) {
return a + b;
}
const sum = score(80, 90);
console.log(sum);
function score(a, b, c) {
return a + b + c;
}
const sum = score(10, 20, 30) + score(30, 40, 50);
console.log(sum);
名前
function foo(name) {
const getName = "Hello " + name;
return getName;
}
const hoga = foo("World")
console.log(hoga);
for文
function createColumn(col) {
const source = [];
for (let i = 0; i < 10; i++) {
source[i] = i * col;
}
return source;
}
console.log(createColumn(2));
この記事が気に入ったらサポートをしてみませんか?