lemon031
lemon031
全部文章
分类
题解(14)
归档
标签
去牛客网
登录
/
注册
lemon031的博客
全部文章
(共3篇)
题解 | #字符串字符统计#
function count(str) { str = str.replace(/\s/g, '').toString() const obj = {} const l = str.length for(let i = 0; i<l; i++) { obj[str.ch...
js
javascript
2021-09-06
0
278
题解 | #获取字符串的长度#
function strLength(s, bUnicode255For1) { let l = s.length if(!bUnicode255For1) { for(let i in s) { s.charCodeAt(i) > 255 ? l++ : l ...
js
javascript
2021-08-12
3
567
题解 | #获取 url 参数#
function getUrlParam(sUrl, sKey) { const urlAry = sUrl.split('?')[1].split('#')[0].split('&') const obj = {} urlAry.map(item => { const...
js
javascript
2021-08-07
1
468