* 만약 숫자의 연속성이 없고 규칙성이 없다면???
- first와 last를 고려해야한다.
* first와 last
- 양끝점이 존재하나 안에 있는 요소에 대한 규칙이나 연속성에 대해서는 보장이 되지 않는경우
- 이런 경우 first, last를 이용하면 된다.
* 예시코드
const students = ['hyeonwoo', 'latte', 'poodle']
function getStudents(first, last) {
// ...some code
}
getStudents('hyeonwoo', 'poodle')
* HTML요소도 생각해볼 수 있다.
- DOM요소에도 firstChild, lastChild라는 DOM Api가 있다.
'Study > JavaScript(Clean code)' 카테고리의 다른 글
[JavaScript][clean-code] 매개변수의 순서가 경계이다. (0) | 2022.05.28 |
---|---|
[JavaScript][clean-code] prefix-suffix (0) | 2022.05.28 |
[JavaScript][clean-code] min - max & begin - end (0) | 2022.05.28 |
[JavaScript][clean-code] isNaN (is Not a Number) (0) | 2022.05.27 |
[JavaScript][clean-code] undefined & null (0) | 2022.05.27 |