js实用函数之map()函数的使用,一分钟学会

重点:
map() 方法定义在JavaScript的Array中,它返回一个新的数组,数组中的元素为原始数组调用函数处理后的值。
值得注意的是:1、map()函数不会对空数组进行检测;2、map()函数不会改变原始数组,它形成的是 一个新的数组
array.map(function(currentValue, index, arr), thisIndex) 参数说明: function(currentValue, index, arr):必须。为一个函数,数组中的每个元素都会执行这个函数。其中函数参数: currentValue:必须。表述当前元素的的值(item) index:可选。当前元素的索引也就是第几个数组元素。 arr:可选。当前元素属于的数组对象 thisValue:可选。对象作为该执行回调时使用,传递给函数,用作"this"的值
示例:对原数组元素进行平方后再赋值给新的数组
let array = [1, 2, 3, 4, 5];
let newArray = array.map((item) => {
return item * item;
})
console.log(newArray) // [1, 4, 9, 16, 25]例2:将int类型的数据换成字符串类型
this.tableData = list.map(function (item) {
if (item.leaseStatus === 0) {
item.leaseStatus = '已租';
} else if (item.leaseStatus === 1) {
item.leaseStatus = '未租';
} else if (item.leaseStatus === 2) {
item.leaseStatus = '已租';
}
if (res.data.data === null) {
item = '暂无记录';
}
return item;
});联系站长:
相关文章
原生js把时间戳转为日期格式年月日时分秒
原生js把时间戳转为日期格式年月日时分秒function parsetime(timestamp){ let timelength...
php根据id和pid把单级数组重新组合为树结构
function list_to_trees($list, $pk='id', $pid = 'pid', $child =&nb...
如何使用宝塔配置正向代理,例如:请求https://www.自己的域名.com/api,代理到https://www.别人的域名.com/api
ngnix如何使用宝塔配置正向代理,例如:请求https://www.自己的域名.com/api, 代理到https://www.别人的域名.com/apilocation /baidu/&...
css显示三行文字,溢出显示省略号
css显示三行文字,溢出显示省略号(显示任意行,可以把数字3替换成其他数字):.text-wrap { display: -webkit-box; &n...
fingerprintjs2使用方法,以及fingerprintjs2文件下载
fingerprintjs2使用方法,以及fingerprintjs2文件下载获取唯一标识,如果有技术问题可以联系站长官方教程:<script> // ...
js获取m到n随机数,js获取随机整数,从0到10,从m到n任意数
˂a class="reference-link" name="js获取从m到n的随机数"˃js获取从m到n的随机数function getRandomNumber(min, ma...




