3. Databases, why are they useful? Image saving NeDB example
Using a database enables persistence - perfect for a high score table or something like that.
Databases can also help with concurrency problems - what happens if two users edit data differently and then save their results? Which is the correct version?
Here is an example of another database engine, lowdb. It's called lowdb because it uses a popular JavaScript library: Lodash. Lodash has lots of useful code for dealing with strings, arrays and other things.