I'm trying to verify some some code that I wrote is secure and I want to make sure the steps I took to prevent "hacking" (changing JS variables) are working. I've heard changing javascript variables from the client side is possible, I just never learned how to do it.
I'm using a knockout.js table. Items can be added from my database. When a user submits the form I send the data to a PHP page which then checks all the inputs to make sure they're valid and unchanged from the constants stored in my database. If they haven't been changed, the data is then submitted into the database.
I just want to try it out myself. How can I use chrome developer or firefox to try to change javascript variables?