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
- vs code 내 node
- Concurrently
- intellij
- 노드에 리액트 추가하기
- 따라하며 배우는 노드 리액트 기본 강의
- node.js로 로그인하기
- 자바스크립트
- props
- JS 개념
- Spring-Framework
- 모던자바스크립트
- spring-boot
- DB Browser
- googleColaboratory
- 리액트
- node.js 설치
- You are importing createRoot from "react-dom" which is not supported. You should instead import it from "react-dom/client"
- Python
- 웹 게임을 만들며 배우는 리액트
- 타자 게임 만들기
- intllij 내 Bean을 찾지 못해서 발생하는 오류
- 인프런
- 거북이 대포 게임
- Colaboratory 글자 깨짐
- 모두의 파이썬
- react오류
- 계산맞추기 게임
- ReactDOM.render is no longer supported in React 18. Use createRoot instead
- Do it 자바스크립트 + 제이쿼리 입문
- react
Archives
- Today
- Total
프로그래밍 삽질 중
[javascript] 객체의 값 반복문 사용, 반복되는 코드 함수로 통일 본문
* 객체의 길이를 구하기 위해 for문을 썼다가 중복되는 부분이 많아 함수로 합치는 과정에서 반복문 for ...in을 알게 됨
* 객체의 경우 index가 있으므로 for ..in 사용이 효과적
기존 코드
const res = await axios(config);
const wordDataSet = res.data.result;
const easyCount = Object.keys(wordDataSet.easy).length;
const middleCount = Object.keys(wordDataSet.middle).length;
const advanceCount = Object.keys(wordDataSet.advance).length;
let checkedCount = 0;
for (let i = 0; i < easyCount; i++) {
const easyCheckedCount = wordDataSet.easy[i].status;
console.log(easyCheckedCount);
if (easyCheckedCount === "C") {
checkedCount += 1;
}
}
for (let i = 0; i < middleCount; i++) {
const middleCheckedCount = wordDataSet.middle[i].status;
console.log(middleCheckedCount);
if (middleCheckedCount === "C") {
checkedCount += 1;
}
}
for (let i = 0; i < advanceCount; i++) {
const advanceCheckedCount = wordDataSet.advance[i].status;
console.log(advanceCheckedCount);
if (advanceCheckedCount === "C") {
checkedCount += 1;
}
}
console.log(checkedCount);
고친 코드
const wordDataSet = res.data.result;
const easyArray = wordDataSet.easy;
const middleArray = wordDataSet.middle;
const advanceArray = wordDataSet.advance;
const easyCount = easyArray.length;
const middleCount = middleArray.length;
const advanceCount = advanceArray.length;
let checkedCount = 0;
function plusCount($typeCheckedStatus) {
if ($typeCheckedStatus === "C") {
checkedCount += 1;
} else if ($typeCheckedStatus === "A") {
checkedCount = checkedCount;
}
}
for (const index in easyArray) {
console.log(index);
const easyCheckedStatus = easyArray[index].status;
plusCount(easyCheckedStatus);
}
for (const index in middleArray) {
const middleCheckedStatus = middleArray[index].status;
plusCount(middleCheckedStatus);
}
for (const index in advanceArray) {
const advanceCheckedStatus = advanceArray[index].status;
plusCount(advanceCheckedStatus);
}
'과거 프로그래밍 자료들 > 프로젝트' 카테고리의 다른 글
[javascript] API로 받아온 정보 내 각각의 버튼에 함수 적용 (0) | 2022.08.11 |
---|---|
[javascript] input 체크박스(JS에서 만든 경우) 의 체크 항목 개수 구하기 (0) | 2022.08.10 |
[javascript] 여러가지 input 작성, scroll, object 길이 파악하기 (0) | 2022.08.09 |
프로젝트 수정 8 - node.js로만 구성된 프로젝트에 리액트 추가(클라이언트 항목 : 인증하기) (0) | 2022.05.16 |
프로젝트 수정 7 - node.js로만 구성된 프로젝트에 리액트 추가(클라이언트 항목 : 로그아웃하기) (0) | 2022.05.16 |