Is JavaScript validation better than server side validations? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Is JavaScript validation better than server side validations?

4th Apr 2020, 5:37 PM
Amarjeet srivastava
Amarjeet srivastava - avatar
3 Answers
+ 11
Server side validation is your final line of defense and should not be neglected. And as Mirielle indicated, a user may be able to bypass validations by tinkering with the client code (editing html tags properties in developer console for instance) For better user experience it's best to also implement client side validation as well (invalid input indication, missing inputs, etc...) You can also minimize calls to the server by preventing requests before the input is valid.
4th Apr 2020, 5:45 PM
Burey
Burey - avatar
+ 1
Server side validation is a must. Frontend validation is optional.
4th Apr 2020, 5:54 PM
Gordon
Gordon - avatar
0
client side validation can be changed by user scripts injection with something like Greasemonkey.
4th Apr 2020, 5:48 PM
Bahhaⵣ
Bahhaⵣ - avatar