以下progateの総合演習の回答コードですが、
下から二行目のconst max = getMax(number1, number2, number3);のコードは
必ずしも必要なのでしょうか。どなたかご教示下さい。
const number1 = 103; const number2 = 72; const number3 = 189; const getMax = (a, b, c) => { let max = a; if (b > max) { max = b; } if (c > max) { max = c; } return max; }; const max = getMax(number1, number2, number3); console.log(`最大値は${max}です`);
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。