puppeth 명령어를 통한 genesis.json 생성하기
// genesis.json { "config": { "chainId": 7722, "homesteadBlock": 0, "eip150Block": 0, "eip150Hash": "0x0000000000000000000000000000000000000000000000000000000000000000", "eip155Block": 0, "eip158Block": 0, "byzantiumBlock": 0, "constantinopleBlock": 0, "petersburgBlock": 0, "istanbulBlock": 0, "ethash": {} }, "nonce": "0x0", "timestamp": "0x62bd7dc2", "extraData": "0x0000000000000000000000000000..
2022. 7. 1.
배열의 비교
예시 const arr1 = [1,2,3,4,5]; const arr2 = [2,4,6,8,10]; const arr3 = [1,2,3,4,5]; 1. stringify를 이용한 간단한 배열의 비교 아래와 같이 비교하려는 배열을 JSON.stringify()메서드를 통해 문자열로 변환한 뒤 비교할 수 있다. console.log(JSON.stringify(arr1) === JSON.stringify(arr2));//false console.log(JSON.stringify(arr1) === JSON.stringify(arr3));//true 2. 배열의 교집합 구하기 console.log(arr1.filter(v => arr2.includes(v)));//[2,4] console.log(arr1.filt..
2022. 6. 25.