Cryptozombies-lesson-code
Jan 25, 2022
Cryptozombies-lesson-code
DON’T USE THIS
uint id = zombies.push(Zombie(_name, _dna)) — 1;
USE THIS
zombies.push(Zombie(_name, _dna));
uint id = zombies.length - 1;
DON’T USE THIS
uint id = zombies.push(Zombie(_name, _dna)) — 1;
USE THIS
zombies.push(Zombie(_name, _dna));
uint id = zombies.length - 1;
Solidity basics for beginners: Learn the fundamentals of smart contract development and build your first DApp! #Solidity #Foundry #Ethereum #Opcodes #DApps