码迷,mamicode.com
首页 >  
搜索关键字:includes    ( 1038个结果
es6新增扩展
一 字符串扩展 let str='wyyw'; srt.startsWith('w') true 以w开头 srt.endsWith('w') true 以w结尾 str.includes('e') false e是否存在 == indexOf str.repeat(2) wyywwyyw 重复次数 ...
分类:其他好文   时间:2020-08-11 09:15:31    阅读次数:74
Kubernetes 使用arthas进行调试
环境 因为k8s中是最基本的jre,网上说缺少tools.jar,但是补充了以后还是不行,最后还是将整个jdk给移到容器中的。 jre中执行: /home # /opt/jre/bin/java -jar /home/arthas-bin/arthas-boot.jar 1 [INFO] artha ...
分类:Web程序   时间:2020-08-06 20:40:20    阅读次数:125
mac idea 设置类注解说明
类注解 打开file->setting->Editor->File and Code Templates->Includes->File Header #if (${PACKAGE_NAME} && ${PACKAGE_NAME} != "")package ${PACKAGE_NAME};#end ...
分类:系统相关   时间:2020-07-29 10:25:34    阅读次数:100
ES6——字符串
拓展方法 子串的识别 ES6 之前判断字符串是否包含子串,用 indexOf 方法,ES6 新增了子串的识别方法 includes(substr) 返回布尔值,判断是否找到参数字符串 startsWith(substr) 返回布尔值,判断参数字符串是否在原字符串的头部 endsWith(substr ...
分类:其他好文   时间:2020-07-26 15:47:39    阅读次数:66
es6字符串、indexOf、includes
<script type="text/javascript"> // 子串识别 /* indexOf 查找字符串中是否包含指定字符串 查找第一次出现的位置,从0开始 includes():返回布尔值,判断是否找到参数字符串。 startsWith():返回布尔值,判断参数字符串是否在原字符串的头部。 ...
分类:其他好文   时间:2020-07-26 15:15:19    阅读次数:54
ES7-ES10的新特性
ES7 1. 数组查找与元素是否存在 let arr = [0, 1, 2, 3, 4, 5, 6] console.log(arr.includes(4)) 2. 乘方的新写法 // es7之前 console.log(Math.pow(2, 3)) // es7 console.log(2 ** ...
分类:其他好文   时间:2020-07-24 15:48:39    阅读次数:50
redis 配置文件说明
参数说明 redis 配置文件说明: #redis.conf # Redis configuration file example. # ./redis-server /path/to/redis.conf ################################## INCLUDES ## ...
分类:其他好文   时间:2020-07-23 16:34:28    阅读次数:56
some、every、find、findIndex、includes。es6比较常用的几个数组方法简单讲解
1、some(过滤) const bool = [2, 3, 4].some((v, i, a) => { // v当前值,i下标,a当前数组 console.log(v) console.log(i) console.log(a) return v > 1 // 只要有其中一个数值满足就不再执行 ...
分类:编程语言   时间:2020-07-21 14:11:25    阅读次数:75
Leetcode: 632. Smallest Range Covering Elements from K Lists
Description You have k lists of sorted integers in ascending order. Find the smallest range that includes at least one number from each of the k lists ...
分类:其他好文   时间:2020-07-19 15:47:40    阅读次数:73
Maven设置:非resources文件夹下配置文件也拷贝到target对应目录的注意事项
首先来一段maven中的资源插件: 1 <build> 2 <resources> 3 <resource> 4 <directory>src/main/java</directory><!--所在的目录--> 5 <includes><!--包括目录下的.properties,.xml 文件都会扫 ...
分类:其他好文   时间:2020-07-18 22:45:44    阅读次数:152
1038条   上一页 1 2 3 4 5 6 ... 104 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!