January 9, 2020 0 Comment Understanding the big-O with JavaScript Finding a complexity for a program is always an important task. It gives us clear indication of how much slower or faster our program will get when you give more data input at it. JavaScript
January 4, 2020 4 Comments Pure & Impure Function In Functional JavaScript a Pure Function is a function that doesn’t depend on anything outside of it’s scope nor modify it. JavaScript