In this fragment
var someDataJSON = jQuery.parseJSON(JSON.stringify(someData));
According to MDN, the internal method converts the JavaScript value to a JSON string; then the external method "takes a properly formed JSON string and returns the resulting JavaScript value" in jQuery
If you start with a JS value and get a JS value, is this a meaningless operation?
source
share