== and === are quite different but do you know how they are different from each other? == (Double equals operator): Known as the equality or abstract comparison operator === (Triple equals operator): Known…
If-else in JavaScript also knows as conditional statements. Which are used to perform different actions based on different conditions. There are 3 types of conditional statements in JavaScript. if else…
Do you know what are the operators in JavaScript? Operators are symbols that perform certain operations on one or more variables or values. Mainly there are six types of operators…
let and const are introduced in ES6 so they are modern Javascript. var is an old way of declaring variables. So in this blog you’ll how and where to use…
I’m damn sure you have heard the word variable while getting started in any programming language but do you know what are variables in javascript? Variable: Variables are just like…
In this quick tutorial, we’ll be getting started with JavaScript In visual Studio code. So get started as quickly as possible. The first thing you need to write a javascript…
There are many powerful frameworks to create an API like Django and Flask. in this tutorial I’ll show you How to Create API in Python using Flask. Before creating an…
Data Encryption is the process through which data is encoded so that it remains hidden from or inaccessible to unauthorized users. In this tutorial, I’ll show you how to How to Encrypt and…
In this tutorial I’ll show you how to get Wikipedia results using python. This will be a GUI. To get results from wikipedia using python we need to use one…
In this tutorial I’ll show you how to make a simple number guessing game using python. Again we will use random module to generate random number. To make this game…