Is there any known way to "hide" or to just make it difficult for users to see and understand my client side objects (which is store as JSON object)? The reason i want that is because i don't want others to simply copy my data.
Consider the fact i'm getting my data from server side and instead of just fetching it as is to a JSON object, I am guessing i could add some algorithm which mixes the data on the server, and only i could know how to plug it back on the client.
I am of course aware to the fact this is not a 100% hiding solution since everything is still visible on the client side.
I hope my question phrased well enough to understand my goal.