728x90
๋ฐ์ํ
12. ๋ฌธ์์ด ๋ฉ์๋ : ๊ฒ์ : includes() : ๋ฌธ์์ด ํฌํจ ์ฌ๋ถ ๊ฒ์
๋ฌธ์์ด ํฌํจ ์ฌ๋ถ๋ฅผ ๊ฒ์ํ์ฌ, ๋ถ๋ฆฐ(true, false)์ ๋ฐํํฉ๋๋ค.
"๋ฌธ์์ด".includes(๊ฒ์๊ฐ)
"๋ฌธ์์ด".includes(๊ฒ์๊ฐ, ์์๊ฐ)
"๋ฌธ์์ด".includes(๊ฒ์๊ฐ, ์์๊ฐ)
const str1 = "javascript reference";
const currentStr1 = str1.includes('javascript'); //true
const currentStr2 = str1.includes('j'); //true
const currentStr3 = str1.includes('b'); //false
const currentStr4 = str1.includes('reference'); //true
const currentStr5 = str1.includes('reference', 1); //true
const currentStr6 = str1.includes('reference', 11); //true
const currentStr7 = str1.includes('reference', 12); //false
728x90
๋ฐ์ํ
'์๋ฐ์คํฌ๋ฆฝํธ' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
match() (6) | 2022.08.22 |
---|---|
search() (5) | 2022.08.22 |
padStart() / padEnd() (5) | 2022.08.17 |
replace() / replaceAll() (4) | 2022.08.17 |
split() (4) | 2022.08.17 |
๋๊ธ