‘This’ is a very straightforward concept in other languages. Not so in javascript. It can point to pretty much anything depending on the context. What the hell is this? If you are coming from another language, which is Object Oriented, such as Java, you are no doubt familiar with the concept of this. This keyword is used inside of…Continue reading The mysteries of ‘this’ keyword in Javascript
Category: Web Development
Python Package
In the last post I discussed about Python Module. From last post we came to know that a Python module is simply a Python source file, which can expose classes, functions and global variables.So, what is Package? The simple striate-forward answer is “A Python package is simply a directory of Python module(s).” Make a Package…Continue reading Python Package
Python Module
What is Module Module is logical organize of reusable Python Code. Module groups the related code for easy to understand and use. As we know almost everything on Python are object, Module is also an object that can be bind and reference. Simply, a module is a file that define functions, classes and variables. A…Continue reading Python Module