是否包含某个特征
Posted 巅峰蜗牛
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了是否包含某个特征相关的知识,希望对你有一定的参考价值。
//是否包含某个特征 function includeFutrue(s1,s2) { let n1=0; let n2=0; while (n1<s1.length&&n2<s2.length){ if(s1[n1]===s2[n2]){ n1++; n2++; }else{ n1++ } } return n2===s2.length; }
以上是关于是否包含某个特征的主要内容,如果未能解决你的问题,请参考以下文章
是否有标准或首选标签类型可用于向某个位置添加额外的锚点/片段链接?
关于js----------------分享前端开发常用代码片段