https://images.cnblogs.com/cnblogs_com/dyfblogs/1530965/o_ply.png ...
分类:
Web程序 时间:
2021-07-07 17:51:32
阅读次数:
0
//produceTypeList-produceType:存在produceTypeList中不存在produceType中 let diff1 = produceTypeList.filter(function(v){ return produceType.indexOf(v) -1 }).jo ...
分类:
编程语言 时间:
2021-06-30 18:45:31
阅读次数:
0
###js var href='http://localhost:8083/datas/dataflow/logicJob?id=CMZJJO2100000001&type=proLook' var urlParams = (function(url){ var result = new Objec ...
分类:
其他好文 时间:
2021-06-25 16:32:45
阅读次数:
0
关于~运算的使用 “~”即“非”运算,在二进制里对数字的每一位进行取反 在实际表现上则是-num-1即~1=>-2 ~-1=>0 在运算时NaN被当作0来运算 根据这个特性可以在String.indexOf()的结果中直接判断有没有查找的字符 所以!!~string.indexOf("somethi ...
分类:
其他好文 时间:
2021-06-19 19:15:14
阅读次数:
0
'''js小知识 js注释 /*多行注释*/ //单行 引入方式 <script src="js路径"></script> <script> window.onload=function(){js} $(document).ready({js}) $(function(){js}) <script> ...
分类:
Web程序 时间:
2021-06-13 09:48:26
阅读次数:
0
if (m_url.indexOf("wss://") >= 0) { QSslConfiguration sslConfiguration = m_pWebSocket->sslConfiguration(); sslConfiguration.setPeerVerifyMode(QSslSock ...
分类:
Web程序 时间:
2021-06-11 17:35:06
阅读次数:
0
1.js判断一个元素是否在数组中 (1).let arr = [1,2,3]; arr.includes(1) // true arr.includes(5) //false (2).a=["1", "3", "2", "3", "0"]; console.log(a.indexOf ('3')); ...
分类:
编程语言 时间:
2021-06-02 13:04:45
阅读次数:
0
Laya 自制框架之事件管理器 @author ixenos 2021年5月26日 1 package framework.manager 2 { 3 import framework.event.FrameworkEvent; 4 5 import laya.events.EventDispatc ...
分类:
其他好文 时间:
2021-06-02 11:40:25
阅读次数:
0
Algorithm。主要是为了编程训练和学习实现 strStr() https://leetcode-cn.com/probl...直接用indexof(),不讲伍德吗,反正第一反应就是这样做。哈哈,先摸下鱼,把上周的任务完成先。Review:主要是为了学习英文,如果你的英文不行,你基本上无缘技术高 ...
分类:
其他好文 时间:
2021-05-25 18:07:57
阅读次数:
0
数组去重不仅在工作中经常使用,也会在面试中经常问到,现在有几种常用的方法: 比如要将数组去重: const arr = [1, 2, 3, "1", 2, undefined, undefined, "undefined", NaN, NaN]; 方法一: 直接通过indexOf 或者 includ ...
分类:
编程语言 时间:
2021-05-24 16:35:21
阅读次数:
0