Posts

Showing posts from February, 2019

JavaScript!

Image
Libraries vs Frameworks A  library  is essentially a set of functions that is called by the code, which are organized into classes. Each call to a library does some specified set of operations. A  framework  possesses some high-level design, with more built-in functions and behaviors. In order to use it you need to insert your own behavior into various places in the framework either by subclassing or by plugging in your own classes. The framework's code then calls your code at these points. Ok now, JS! Every day a new  JavaScript library is born! A few years ago, JavaScript (hereafter referred to as JS) was used for web-based front end development. Now, it is not only a front-end development platform, instead, it has numerous dimensions such as back-end development, database language, IoT capable language etc. etc. In addition, like all the other programming languages, frameworks are very common and popular in JS. But, in addition to that, n...