DEV Community

Discussion on: Cache API in JavaScript - with just 20 lines of code.

Collapse
 
rajeshroyal profile image
Rajesh Royal

Good correction, I will update the code.

Also I didn't write it to be optimised. I was just experimenting how caching works simply and pasted same code here 😀.

Collapse
 
milanwake profile image
Moon Presence

It's good that you shared interesting material, but remember that not all developers know, are thinking and/or working on optimizing their scripts. There are beginners, and perhaps not only beginners, who, seeing interesting code at first glance, copy it into their applications and use it without checking or optimizing, and then other people may suffer from sudden errors that can come out absolutely by accident.

It is necessary to approach operations related to cycles carefully and try to think through the work of the function in advance, since even any small error can entail a bunch of others that can cause unnecessary memory costs or something else, perhaps. Lol.

I wish you good luck.

Thread Thread
 
rajeshroyal profile image
Rajesh Royal

Sure brother.