07.배열기초_getFirstElement
2020. 2. 13. 15:33
728x90
Given an array, "getFirstElement" returns the first element of the given array. (배열이 주어졌을때, "getFirstElement" 함수는 주어진 배열의 첫번째 요소를 반환해야 합니다.)
Notes: If the given array has a length of 0, it should return 'undefined'.
위와 같은 경우에서 내가 시도한 답은 이거였는데
function getFirstElement(array) {
if(array){
return array[0];
}
}
모범답안을 보여주자면 아래와 같다.
function getFirstElement(array) {
if (array.length === 0) {
return undefined
}
return array[0];
}
이 문제를 통해서 if문의 조건으로 array만 썼는데도 array의 길이를 바로 인식한다는 것을 알게되었다.
728x90
'Codestates precourse' 카테고리의 다른 글
객체(object) (0) | 2020.02.16 |
---|---|
08.배열의반복_getAllLetters (0) | 2020.02.14 |
06.반복문_countCharacter (0) | 2020.02.13 |
05.반복문_repeatString (0) | 2020.02.13 |
반복문(Iteration) (0) | 2020.01.28 |