gpt4 book ai didi

javascript - 具有自定义应用函数的节点 javascript 数组解构

转载 作者:行者123 更新时间:2023-12-03 23:33:32 26 4
gpt4 key购买 nike

我有一个包含两个字符串的数组:例如“1”和“5”。我想将这两个字符串保存到参数中,但已经保存为整数。目前,代码如下所示:

const data = ['1', '5'];
const [min_str, max_str] = data;
const min = parseInt(min_str, 10);
const max = parseInt(max_str, 10);

console.log(typeof min_str, typeof max_str, typeof min, typeof max)

有没有办法将此代码减少到一行,使得 parseInt 已经应用于 min_strmax_str? p>

最佳答案

你可以在销毁之前映射数据

const [min, max] = data.map(d => parseInt(d, 10));

关于javascript - 具有自定义应用函数的节点 javascript 数组解构,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65871138/

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