Problem
- Make a program that filters a list of strings and returns a list with only your friends name in it.
- 문자열 배열을 필터링해서, 친구 이름만 포함하는 배열을 반환한다.
- If a name has exactly 4 letters in it, you can be sure that it has to be a friend of yours.
- 이름에 정확히 4개의 글자가 있어야 친구이다.
- Keet the original order of the names in the output.
Solution 01
function friendOrFoe(arr) {
let result = [];
for (let i = 0; i < arr.length; i++) {
if (arr[i].length === 4) {
result.push(arr[i]);
}
}
return result;
}
friendOrFoe(['Sam', 'Ralph', 'Leo', 'Coco']); // ['Coco']
friendOrFoe(['Lucy', 'Lauren', 'Becky', 'Lolo']); // ['Lucy', 'Lolo']
push()
: 배열의 끝에 새 element를 추가하고, 새로운 길이를 반환한다.
Solution 02
function friendOrFoe(arr) {
return arr.filter(function(i) {
return i.length === 4;
});
}
friendOrFoe(['Sam', 'Ralph', 'Leo', 'Coco']); // ['Coco']
friendOrFoe(['Lucy', 'Lauren', 'Becky', 'Lolo']); // ['Lucy', 'Lolo']
filter()
: 테스트를 통과한 배열의 각 값을 모아, 새 배열로 반환한다.
Solution 03
function friendOrFoe(arr) {
return arr.filter(i => i.length === 4);
}
friendOrFoe(['Sam', 'Ralph', 'Leo', 'Coco']); // ['Coco']
friendOrFoe(['Lucy', 'Lauren', 'Becky', 'Lolo']); // ['Lucy', 'Lolo']