为什么这个函数调用也返回未定义

发布于 2025-01-10 18:19:49 字数 262 浏览 0 评论 0原文

我编写了一个简单的 JavaScript 代码来打印数组的最大数量并打印未定义的值。

let arrNums = [1,2,5,19,20];
const maxNum = function(arr) {
if (arr.length != 0) {
    console.log(Math.max(...arr));
}
else{
    console.log("Empty");  
}}

console.log(maxNum(arrNums));

I have written a simple JavaScript code to print the max number of an array and get undefined printed as well.

let arrNums = [1,2,5,19,20];
const maxNum = function(arr) {
if (arr.length != 0) {
    console.log(Math.max(...arr));
}
else{
    console.log("Empty");  
}}

console.log(maxNum(arrNums));

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

緦唸λ蓇 2025-01-17 18:19:49

您的函数不返回任何内容。返回 Math.max()'Empty' 使其正常工作。之后,您可以在函数外部使用console.log(maxNum(arrNums));。请参阅下面的示例:

const arrNums = [1, 2, 5, 19, 20];
const maxNum = function (arr) {
    if (arr.length != 0) {
        return Math.max(...arr);
    } else {
        return 'Empty';
    }
}

console.log(maxNum(arrNums));

希望这有帮助!

Your function doesn't return anything. Return the Math.max() and the 'Empty' for it to work. After that you can just use console.log(maxNum(arrNums)); outside the function. See below for an example of this:

const arrNums = [1, 2, 5, 19, 20];
const maxNum = function (arr) {
    if (arr.length != 0) {
        return Math.max(...arr);
    } else {
        return 'Empty';
    }
}

console.log(maxNum(arrNums));

Hoped this helped!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文