JavaScript编程题(八)——es6练习

更新时间:2023-07-09 13:05:52 阅读: 评论:0

JavaScript编程题(⼋)——es6练习1、后端数据处理
从某数据库接⼝得到如下值:
{
rows: [
["Lisa", 16, "Female", "2000-12-01"],
["Bob", 22, "Male", "1996-01-21"]
],
metaData: [
{ name: "name", note: '' },
{ name: "age", note: '' },
立定三级跳远
{ name: "gender", note: '' },
{ name: "birthday", note: '' }
]
}
rows 是数据,metaData 是对数据的说明。现写⼀个函数 parData,将上⾯的对象转化为期望的数组:
小学日记100字[
{ name: "Lisa", age: 16, gender: "Female", birthday: "2000-12-01" },作文《我的烦恼》
{ name: "Bob", age: 22, gender: "Male", birthday: "1996-01-21" },
]
⽅法⼀:
const parData = (data) => {
指鹿为马的故事
let array = [];
let obj = {}
石榴园obj = {};
obj[item.name] = r[i];
})
array.push(obj);
})
return array;
}
console.log(parData(obj));
⽅法⼆:
const parData2 = (data) => {
ws.map(r => {
duce((res,cur,i) =>{
aData[i].name]=cur;伤感网名女生
return res;
}, {} );
})
}
console.log( parData2(obj));
2、字符串居中补全
完成函数 centerPad 可以让⼀个字符串居中包裹在指定的可重复填充的字符串中间,例如:
centerPad('Hello', 13, 'abc') // => 'abcaHelloabca'
centerPad('Gook Luck!', 30, '*~') // => '*~*~*~*~*~Gook Luck!*~*~*~*~*~'
相遇作文第⼀个参数为被包裹字符串,第⼆个参数为最终的字符串长度,第三个参数为⽤来填充的字符。如果字符串⽆法完全居中,那么让字符串偏左,例如:
centerPad('Hello', 10, 'abc') // => 'abHelloabc'
如果第⼆个参数传⼊的字符串长度⽐原来长度要短,直接返回原有字符串即可,例如:centerPad('Hello', 1, 'abc') // => 'Hello'
⽅法:
const centerPad = (str, len, pad) => {
let L = Math.floor((len-str.length)/2);
return ''.padStart(L,pad) + str + ''.padEnd(len - L - str.length,pad);
}
console.log(centerPad('Hello', 3, 'abc') )
3、数组去重
编写⼀个函数 unique(arr),返回⼀个去除数组内重复的元素的数组。例如:
unique([0, 1, 2, 2, 3, 3, 4]) // => [0, 1, 2, 3, 4]
unique([0, 1, '1', '1', 2]) // => [0, 1, '1', 2]
⽅法:
const unique = (arr) =>  [...new Set(arr)];//或者Array.from(new Set(arr))
console.log(unique([0, 1, '1', '1', 2]) )才高八斗

本文发布于:2023-07-09 13:05:52,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/89/1074421.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:字符串   数组   参数   函数
相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图