gpt4 book ai didi

javascript - 函数的返回值VS分配给var然后返回?

转载 作者:行者123 更新时间:2023-11-30 19:18:48 25 4
gpt4 key购买 nike

<分区>

我在写代码时不时地在想什么更好?只需从函数返回值或为此值创建变量然后返回。仅仅是味道吗?或者直接返回有什么好处?


// variant 1

function (a, b) {
const c = a + b * 2;

return c;
}

function (a, b) {
return a + b * 2;
}

// variant 2

async function () {
const {data} = await fetch(api);
const c = {
...data,
hello: "world",
}

return c;
}

async function () {
const {data} = await fetch(api);

return {
...data,
hello: "world",
};
}

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com