Skip to content
Advertisement

How to make a program show a toast instead of crashing?

I am working on an app. Here’s a small fragment which converts the entered string to a fraction:

JavaScript

This works pretty well, provided you enter the number in the correct format. However, if we mess up the format, example, inserted 2 spaces or ‘/’, the app crashes and closes. I want that if the program encounters a problem in this segment, it should show a toast instead and not close.

Is this possible? If yes, how?

Advertisement

Answer

Just surround it with try/catch as easy as:

JavaScript
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement