TIL - submit() versus requestSubmit()Using requestSubmit() method helps in enforcing form field validation that is skipped when using submit().requestSubmit() method ensures that submit handlers attached to the form are triggered, unlike submit() which ignores them.
Storing Recipes in IndexedDBIndexedDB feature discussed on show, simplicity of UI for entering data, search feature added with fuzzy string match and case handling issues.