RAID has "levels" to refer to different configurations.
RAID 0 (striping) means interleaving among multiple drives to increase performance. Lose any one drive, you lose everything - or at least interleaved "stripes" will be lost from everything. So you would never use that, except for something like a cache to hold the .o files when compiling some huge thing where the build runs overnight back in the 90s.
RAID 1 (mirroring) means multiple exact copies of one drive. Lose up to the last drive, you retain everything. Read performance is theoretically higher, write performance is worse.
RAID 5 (block level striping with distributed parity) requires at least three drives. You can lose any one drive and keep everything, but you get more storage space than you would with RAID 1, especially as you increase beyond three drives, due to the tricks of being able to recover the missing data from the error correcting code.
Those were the common levels we had to memorize for things like CompTIA A+, there are a bunch more, including recursive ones like 1+0. It's all described on wikipedia.
At least for the home user, I don't think any of the performance advantages of RAID over one drive make sense any more, because you can just use an SSD.
RAID isn't a substitute for backups, since software bugs and electrical failures could cause multiple disks to fail at the same time. It also was always weird to assume failures are independent & identically distributed, when it's the same model drive living in the same environment (voltages, heat, vibration, etc.) for the same amount of time, so you'd think failures would be correlated to expect the drives to fail all at once. Also, if the sysadmin isn't paying attention, it's common for the array to enter a degraded state from a failed drive, and for no one to do anything about it until a second drive fails.