ES6學習筆記——字符串操做

1、字符串查找 indexOf是基本的查找字符串驗證的方法,在ES6中,又新增3種查找字符串方法:一、includes() 二、startsWith() 三、endsWith() includes() 返回值爲布爾值,表示是否找到該字符串。例:javascript const s = 'Hello world!'; s.includes('o'); // true startsWith() 返回
相關文章
相關標籤/搜索