Blog

No more Access-Control-Allow-Origin error

Problem No 'Access-Control-Allow-Origin' header is present on the requested resource This is the error that bugged me the most in the early stages of my web development journey.😪 To know more about this error and about CORS: https://developer.moz...

Creating objects with functions, one level deeper.

Basic functionality of function is like a computer. We input some properties, a function does what is defined inside it and gives an output. In JavaScript a majority of functions are used to create objects. It is because an object can store both Data...