CryptoZombies chap.2-01~04 ✔mapping ( key => value ) data명; (뭘로 찾을 건지 => 뭘 찾을 건지) //얘 지갑 주소가 이건데 얘의 계좌에 얼마 있는지 찾아줄래 mapping(address => uint) public accountBalance; //userId가 이건데 얘의 이름이가 어떻게 되니 mapping(uint => string) userIdToName; //좀비 ID가 이건데 얘 주소가 어떻게 되니 mapping (uint => address) public zombieToOwner; //좀비 주소가 이건데 현재 좀비 몇 마리니 mapping (address => uint) ownerZombieCount; ✔msg.sender : 함수를 호출한 주소..