Vemon.
Vemon.
全部文章
分类
归档
标签
去牛客网
登录
/
注册
Vemon.的博客
全部文章
(共23篇)
题解 | #使用闭包#
function makeClosures (arr, fn){ return arr.map(item=>{ return ()=> fn(item) }) }
2023-10-13
0
227
题解 | #计时器#
function count(start, end) { console.log(start) let timer = setInterval(()=>{ console.log(++start) if (start >= end) { cl...
2023-10-13
0
232
题解 | #判断质数#
Number.prototype._isPrime = function (){ if (this == 2) { return true } if (this !== 1 && this % 2 && this % 3 && th...
2023-10-13
0
214
题解 | #接口#
const _api = string => { // 补全代码 if(string.includes('get?')){ return data } else { const query = string.split('to=')[1] data.forEach(item=...
2023-08-03
0
306
题解 | #数组扁平化#
// 方法一,reduce + 递归 const _flatten = arr => { // 补全代码 return arr.reduce((pre, current)=>{ Array.isArray(current) ? pre.push(..._flatten(curr...
2023-08-03
0
335
题解 | #检查重复字符串#
function containsRepeatingLetter(str) { // ([a-zA-Z]) 是指匹配字符 // \1 是指对([a-zA-Z])的引用 // ([a-zA-Z])\1的结果只能是 aa bb cc 这样连续相同的字符 // \1可以多个,根据题目需要...
2023-08-03
0
303
题解 | #验证是否是身份证#
const _isCard = number => { if (number.length != 18) { return false } // 数字17位,最后一位可数字可大写字母 const reg = /^\d{17}([A-Z0-9])$/ return r...
2023-08-03
0
283
题解 | #子字符串频次#
const _searchStrIndexOf = (str, target) => { // 补全代码 if(str.length < target.length){ return 0 } const reg = new RegExp(str, 'g') r...
2023-08-03
0
256
题解 | #文字输出#
function output(str) { const content = document.querySelector('.content') const child = content.querySelectorAll('.word') // 删除原有节点 ch...
2023-05-05
0
311
题解 | #完全等同#
// 1. 不考虑序列化的情况下,转成字符串进行比较 function identity(val1, val2) { return JSON.stringify(val1) === JSON.stringify(val2) } // 2. 用Object.is() function identi...
2023-04-27
0
270
首页
上一页
1
2
3
下一页
末页