두 개의 문자열을 받아서 firststring이 second로 시작하는지 확인하는 JavaScript 함수를 작성해야 합니다.
예를 들어 -
If the two strings are: “Disaster management report” “Disas” Then our function should return true
이 함수에 대한 코드를 작성해 봅시다 -
예시
const first = 'The game is on'; const second = 'The'; const startsWith = (first, second) => { const { length } = second; const { length: l } = first; const sub = first.substr(0, length); return sub === second; }; console.log(startsWith(first, second));
출력
콘솔의 출력은 다음과 같습니다. -
true