Skip to content
Advertisement

How to handle empty value in React form fields?

Below code is taken from reactjs.org, my question is how to handle the empty value in the below code. Alert should trigger only when there is some input from the user, it should not trigger if the input is empty

JavaScript

Advertisement

Answer

you should use an if statement at your handleSubmit function

JavaScript

this way if value is equal to '' alert would not be shown if it contains any character such as 'm' it would show the alert

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