[프로그래머스] 문자열안에 문자열 | JS 문제문자열 str1, str2가 매개변수로 주어집니다. str1 안에 str2가 있다면 1을 없다면 2를 return하도록 solution 함수를 완성해주세요.해결 과정function solution(str1, str2) { return str1.includes(str2)?1:2} includes함수를 이용해 삼항연산자로 풀었다. ⌨️ 프로그래머스/코딩테스트 입문 2024.08.21