const jane = await User.create({ name: "Jane" }); console.log(jane.name); // "Jane" jane.name = "Ada"; // the name is still "Jane" in the database await jane.save(); // Now the name was updated to "Ada" in the database!