일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 프록시배포구조
- 러스트 기초 학습
- Vue.js
- ethers v6
- ethers typescript
- multicall
- 스마트컨트렉트테스트
- 러스트기초
- nestjs 튜토리얼
- Vue
- ethers websocket
- vue기초
- 머신러닝기초
- 깃허브명령어
- rust 기초
- ambiguous function description
- 스마트컨트렉트 예약어 함수이름 중복
- 컨트렉트 동일한 함수이름 호출
- ethers type
- 컨트렉트 배포 자동화
- SBT표준
- git rebase
- 러스트 기초
- nest.js설명
- 체인의정석
- chainlink 설명
- ethers
- 스마트 컨트렉트 함수이름 중복
- 스마트컨트렉트프록시
- 스마트컨트렉트 함수이름 중복 호출
Archives
- Today
- Total
체인의정석
map으로 객체안의 값 null 일 경우 0으로 바꾸기 본문
728x90
반응형
const arr1 = [
{ pool_name: 'A', volume: null },
{ pool_name: 'B', volume: 0.0999999972073686 }
];
// Pass a function to map
const replaceNullWithZero = (arr) => {
return arr.map(item => ({
...item,
volume: item.volume !== null ? item.volume : 0
}));
};
console.log(replaceNullWithZero(arr1))
다음과 같이 ...item을 하면 해당 객체가 그대로 나오지만
그 이후에 , 를 넣고 특정 요소에 대해서 정의해 주면 해당 조건대로 업데이트가 되어서
> Array [Object { pool_name: "A", volume: 0 }, Object { pool_name: "B", volume: 0.0999999972073686 }]
다음과 같이 null을 0으로 바꿀 수 있다.
728x90
반응형
'개발 > backend' 카테고리의 다른 글
Comments