In javaScript, the strings can be assigned in one of the following manner:
- var str = "string";
- var str = 'string';
While I don't see any visible difference between the two in practice (areas where they are defined, propagated or consumed), I would like to know the exact difference between these two methodologies. Do we have any difference internally in the architecture? If yes, Do we have any implications?
proof of documents is much appreciated