Fetch Api Usage in Javascript
The Fetch API interface allows web browser to make HTTP requests to web servers. It works asynchronously. JQuery.ajax() and XMLHttpRequest can be used instead of the Fetch API. But fetch api is both easier to use and comes with window object. If
How to Make Dynamic Dropdown List with Ajax in Python Django?
In Django projects, we may have data like categories and subcategories. We can present this data in forms with drop-down lists in the user interface. In this post, I will explain how to dynamically get subcategories from server with ajax
Map, Filter and Reduce Functions in Python
When we write programs in the Python language, we constantly do operations on lists and loops. While doing these operations, python offers us three useful functions that enable us to write our codes in a simple, readable and short way.