일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- SBT표준
- erc4337 contract
- 스마트컨트렉트테스트
- 체인의정석
- vue기초
- 계정추상화
- Vue.js
- git rebase
- 머신러닝기초
- rust 기초
- 스마트 컨트렉트 함수이름 중복
- ethers
- 오블완
- ambiguous function description
- 컨트렉트 동일한 함수이름 호출
- 러스트 기초 학습
- ethers v6
- 스마트컨트렉트 예약어 함수이름 중복
- 스마트컨트렉트 함수이름 중복 호출
- chainlink 설명
- ethers websocket
- ethers typescript
- 러스트기초
- ethers type
- multicall
- 러스트 기초
- 컨트렉트 배포 자동화
- erc4337
- 티스토리챌린지
- Vue
Archives
- Today
- Total
목록javascript map null to 0 (1)
체인의정석
map으로 객체안의 값 null 일 경우 0으로 바꾸기
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 { poo..
개발/backend
2023. 7. 24. 14:01