摘要: 车牌号: /^[京津沪渝冀豫云辽黑湘皖鲁新苏浙赣鄂桂甘晋蒙陕吉闽贵粤青藏川宁琼使领A-Z]{1}[A-Z]{1}[A-Z0-9]{4}[A-Z0-9挂学警港澳]{1}$/ 阅读全文
posted @ 2021-09-01 15:42 MerLin97 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 文档针对React项目 文件夹, 文件名 统一小写, 多个单词以连接符(-)连接; JavaScript变量名称采用小驼峰标识, 常量全部使用大写字母, 组件采用大驼峰; CSS采用普通CSS和styled-component结合来编写(全局采用普通CSS, 局部采用styled-component 阅读全文
posted @ 2021-09-01 14:06 MerLin97 阅读(41) 评论(0) 推荐(0) 编辑
摘要: 问题 & 解答 非原创 Q: 写一个diff方法, 用于比较两个数组, 返回两数组中不同的部分; 要求考虑算法性能, 使用es6/es7语法, 不能使用第三方类库 console.log(diff([1, 2], [2, 1])); // => [] console.log(diff([1, 2, 阅读全文
posted @ 2021-09-01 12:25 MerLin97 阅读(107) 评论(0) 推荐(0) 编辑
摘要: 代码 -- 函数式编程 function test (x) { this.__value = x; } test.prototype.of = function (x) { return new test(x) } test.prototype.isValid = function () { thi 阅读全文
posted @ 2021-09-01 10:16 MerLin97 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 1. JS 最大可使用安全整数 在 JS 中能够安全使用的有符号安全的整数: Math.pow(2, 53) - 1 // 9007199254740991 JS的最大和最小安全值可以这样获得: console.log(Number.MAX_SAFE_INTEGER); // 90071992547 阅读全文
posted @ 2021-09-01 10:14 MerLin97 阅读(57) 评论(0) 推荐(0) 编辑