01. 결괏값을 작성하시오. { const str = "javascript"; const text = str.indexOf("a"); const text2 = str.lastIndexOf("a"); const text3 = str.includes("a"); console.log(text); console.log(text2); console.log(text3); } 정답 1 3 true 오답노트 lastindexOf가 헷갈려서 틀렸습니다.😥 indexOf는 문자열에서 원하는 값의 첫번째 위치값입니다. javascript는 위치값이 0123456789이므로, 첫번째 a가 있는 위치는 1이므로 1이 출력됩니다. lastIndexOf는 문자열에서 원하는 값이 마지막으로 있는 위치값을 구합니다. 마지막 a가 있는..