I realize that we can view the JS code in the browser via Inspect element > source or the like. For example, I have following code and it can be view under "source".
$.ajax({
url: baseUrl + 'location/insert_user_location',
type: "post",
data: {address:address,lat:lat,lng:lng,acc:acc},
}).done(function(){
getUserLocation();
});
Is this insecure, or does it even matter?