Writing a regular expression, I found this code:
JSON.stringify(e.model.ProcedureDate).replace(/\"/g, '');
Why does /\"/g work without being quoted? It isn't a string, and from what I gather, javascript doesn't have literals... What would you call the text passed to .replace()?
/\"/gis the same as/"/g