-
课程名称:JavaScript ES(6-11)全版本语法 每个前端都需要的基础课
-
课程章节: 字符串扩展:String.prototype.padStart(),String.prototype.padEnd()
-
主讲老师:谢成
课程内容:
今天学习的内容包括:
字符串扩展:String.prototype.padStart(),String.prototype.padEnd()
课程收获:
padStart() 方法用另一个字符串填充当前字符串 (如果需要的话,会重复多次),以便产生的字符串达到给定的长度。从当前字符串的左侧开始填充。
padEnd() 方法会用一个字符串填充当前字符串(如果需要的话则重复填充),返回填充后达到指定长度的字符串。从当前字符串的末尾(右侧)开始填充。
const str = 'imooc'
console.log(str.padStart(8, 'x'))
console.log(str.padEnd(8, 'y'))
console.log(str.padStart(8))
//yyyy-mm-dd 2020-04-01
const now = new Date()
const year = now.getFullYear()
const month = (now.getMonth() + 1).toString().padStart(2, '0') // 0~11
const day = (now.getDate()).toString().padStart(2, '0')
console.log(`${year}-${month}-${day}`)
const tel = '13012345678'
const newTel = tel.slice(-4).padStart(tel.length, '*')
console.log(newTel)
console.log(new Date().getTime()) // 13位 ms
timestamp.padEnd(13, '0') // 伪代码
今天学习课程共用了35分钟,重新了解了一下字符串扩展:String.prototype.padStart(),String.prototype.padEnd(),这是我不知道第多少次决心补习JavaScript基础,希望能够坚持下去。