📌  相关文章
📜  通过 javascript 代码示例按函数查找最大数

📅  最后修改于: 2022-03-11 15:01:15.582000             🧑  作者: Mango

代码示例3
function largestNumber(first, second, third) {
    if (first > second && first > third) {
        return first;
    } else if (second > first && second > third) {
        return second;
    } else {
        return third;
    }
}
const num1 = 100;
const num2 = 120;
const num3 = 80;
console.log(largestNumber(num1, num2, num3));
//Output: 120