Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- intllij 내 Bean을 찾지 못해서 발생하는 오류
- ReactDOM.render is no longer supported in React 18. Use createRoot instead
- Do it 자바스크립트 + 제이쿼리 입문
- spring-boot
- Colaboratory 글자 깨짐
- Spring-Framework
- 웹 게임을 만들며 배우는 리액트
- 타자 게임 만들기
- intellij
- 거북이 대포 게임
- JS 개념
- 인프런
- vs code 내 node
- 리액트
- 모던자바스크립트
- googleColaboratory
- 노드에 리액트 추가하기
- react
- You are importing createRoot from "react-dom" which is not supported. You should instead import it from "react-dom/client"
- node.js로 로그인하기
- 계산맞추기 게임
- 따라하며 배우는 노드 리액트 기본 강의
- 모두의 파이썬
- 자바스크립트
- react오류
- Concurrently
- DB Browser
- props
- node.js 설치
- Python
Archives
- Today
- Total
프로그래밍 삽질 중
자바스크립트 문제 - 2 본문
* 출처 : https://learnjs.vlpt.us/basics/09-array-functions.html
[문제]
숫자 배열이 주어졌을 때 10보다 큰 숫자의 갯수를 반환하는 함수를 만드세요
1
2
3
4
5
6
|
function countBiggerThanTen(numbers) {
/* 구현해보세요 */
}
const count = countBiggerThanTen([1, 2, 3, 5, 10, 20, 30, 40, 50, 60]);
console.log(count); // 5
|
cs |
[해결]
1. forEach
1
2
3
4
5
6
7
8
9
10
11
12
|
function countBiggerThanTen(numbers) {
let count = 0;
numbers.forEach(n => {
if(n > 10) {
count++;
}
})
return count;
}
const count = countBiggerThanTen([1, 2, 3, 5, 10, 20, 30, 40, 50, 60]);
console.log(count); // 5
|
cs |
2. filter
1
2
3
4
5
6
7
8
|
function countBiggerThanTen(numbers) {
return numbers.filter(n => n > 10).length;
}
const count = countBiggerThanTen([1, 2, 3, 5, 10, 20, 30, 40, 50, 60]);
console.log(count); // 5
|
cs |
3. reduce
1
2
3
4
5
6
7
8
9
10
11
12
13
|
function countBiggerThanTen(numbers) {
return numbers.reduce((a, b) => {
if (b > 10) {
return a + 1;
} else {
return a;
}
}, 0);
}
const count = countBiggerThanTen([1, 2, 3, 5, 10, 20, 30, 40, 50, 60]);
console.log(count); // 5
|
cs |
'과거 프로그래밍 자료들 > 코딩테스트' 카테고리의 다른 글
JS 100제 1~10 (0) | 2022.06.22 |
---|---|
[자바스크립트] 프로그래머스 - x만큼 간격이 있는 n개의 숫자 (0) | 2022.06.22 |
[자바스크립트] 프로그래머스 - 별 찍기 (0) | 2022.06.22 |
자바스크립트 문제 - 3 (0) | 2022.06.16 |
자바스크립트 문제 - 1 (0) | 2022.06.16 |