JavaScript 유용한 함수: String Object 7개 정리
Array는 이전 글을 읽고 참조하시면 됩니다. 이 포스트에선 자바스크립트 String, Object 유용한 함수를 소개합니다. Stringsplit 문자열을 분할하여 배열로 만들기 const date = `2020/02/23`;const result = date.split('/'); console.log(result); // ["2020", "02", "23"] split하여 분할 후, 다시 합치려면 join을 사용. concat 문자열에 다른 문자열을 연결하여 새로운 문자열을 만듭니다 const str1 = `Hello.`;const str2 = `World!`;const result = str1.concat(str2); console.log(result); // > "Hello.World!" sta..
C++ 200제/코딩 IT 정보
2020. 4. 22. 07:00