What's actually going on with CORS, under the hood
The article explains that CORS (Cross-Origin Resource Sharing) is a browser mechanism that relaxes the same-origin policy, which by default blocks JavaScript on one origin from reading data from another origin. The brows…