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 |
Tags
- 코딩 어?
- lastIndexOf()
- ubuntu타임존
- Robo3T 폰트 키우기
- 객체의 밸류값만 찾기
- 깃 토큰 만료
- 우분투 시간 변경
- search()
- 리엑트블로거
- js 문자열을 문자배열로
- @Moditying @Query
- 프론트엔드 스쿨
- 문자열 인터폴레이션
- Robo3T 글씨키우기
- 레디스 확인
- 시퀄 문법
- 배열을 객체로
- Robo3T 글씨체 변경
- 스프링 데이타 JPA
- indexOf()
- 객체를 배열로
- 객체의키값만 찾기
- ${변수}
- 가상컴퓨터마법사
- Robo3T 폰트변경
- 5.3.8 Modifying Queries
- sql like연산자
- sql 문자열 패턴 검색
- ...점점점문법
- findIndex()
Archives
- Today
- Total
코딩기록
JS) map- 배열안 특정 객제 제외하고 찾기 본문
728x90
빈배열 만들고 배열(otherAccountInfo).map(info)
info라는 인수가 for문의 i와 같은 역활이다 맵안을 돈다.
console.log("--배열안 특정객체 제외하고 찾기-------------");
let otherAccountInfo = [
{
id: 'test3',
nickname: 'test3',
point: 1550,
state: 'whitePlayer',
userId: 1,
},
{
id: 'qwe123',
nickname: 'qwe123',
point: 1000,
state: 'blackPlayer',
userId: 2,
},
{
id: 'nikemania',
nickname: '하하호호히히',
point: 1000,
state: 'blackObserver',
userId: 3,
},
{
id: 'wow',
nickname: 'gogo',
point: 1000,
state: 'whiteObserver',
userId: 4,
}
]
const userId = 1;
const infoResult = [];
otherAccountInfo.map((info) => {
if (info.userId !== userId) {
infoResult.push(info)
}
});
console.log("infoResult:", infoResult);
[console.log]
--배열안 특정객체 제외하고 찾기-------------
infoResult: [
{
id: 'qwe123',
nickname: 'qwe123',
point: 1000,
state: 'blackPlayer',
userId: 2
},
{
id: 'nikemania',
nickname: '하하호호히히',
point: 1000,
state: 'blackObserver',
userId: 3
},
{
id: 'wow',
nickname: 'gogo',
point: 1000,
state: 'whiteObserver',
userId: 4
}
]
반응형
'백엔드' 카테고리의 다른 글
JS) 화살표 표기법(arrow notation) ---펌 (0) | 2022.08.28 |
---|---|
쿠버네티스(kubernetes) 1. 개념 및 용어 정리( 컨테이너, 도커, 오케스트레이션, 쿠버네티스) (0) | 2022.08.25 |
Mysql)워크밴치에러- error unhandled exception: current profile has no WMI enabled (0) | 2022.08.14 |
[네트워크] 텔넷(telnet) 명령어 - 포트 확인 방법 (0) | 2022.08.09 |
도커로 redis 실행하기 (0) | 2022.08.09 |
Comments