๐จ๐ป Web Development/HTML | CSS | JS | jQuery
[Day4] JS 4 - ๋ฌธ์์ด ๊ฒ์, ์ซ์, ๋ฐฐ์ด, ๋ ์ง
[Day4] JS 4 [11/23] js ๋ฌธ์์ด : ๊ฒ์ ๋ฌธ์์ด ์ผ์น let str = "์๋
ํ์ธ์, ํ๊ธธ๋ ์
๋๋ค. - ํ๊ธธ๋ ์ -"; console.log( str.indexOf("ํ๊ธธ๋", 0) ); // 7 console.log( str.indexOf("ํ๊ธธ๋") ); // 7 //console.log( str.lastIndexOf("ํ๊ธธ๋", from) ); // 7 console.log( str.lastIndexOf("ํ๊ธธ๋") ); // 18 // ์ฐพ๋ ๋ฌธ์์ด์ด ์๋ ๊ฒฝ์ฐ : -1 ๋ฐํ // indexOf(), lastIndexOf()์ search()์ ์ฐจ์ด์ : ์ ๊ทํํ์ console.log( str.search(/ํ๊ธธ๋/) ); // 7 console.log( str.match("๊น..
2022. 11. 24. 10:29
์ต๊ทผ๋๊ธ