An array is a container containing many data of the same type within a single variable in a contiguous manner. It means all data can be of numbers type, string type, etc. In this .... Read More
Here in this tutorial, we will learn about Hash Maps in Python. A Hash map is a data structure where data is stored in key and value format where all the keys are unique and for a .... Read More
This tutorial will show you how to get the coordinates of the cursor in JavaScript. First of all, let’s create our HTML element which shows us the position coordinates of the.... Read More
It’s hard to print a backslash “\” in Swift if you don’t know how to escape from that character. Look at the below code: print("\") It will throw an error: .... Read More
In this tutorial, we will learn how to concatenate strings in Swift. We can concatenate or merge two or multiple strings in Swift easily with the following methods. I have worked i.... Read More
This tutorial will show you how to convert array elements to Uppercase or Lowercase in JavaScript. Convert all array elements to uppercase: To transform each element of the array u.... Read More
Django is a framework based on Python that uses the model-view-template architecture to build web apps. In this tutorial, we will learn how to add static files such as images, java.... Read More
In this tutorial, we are going to make a Random Quotes Generator using Javascript and a little touch of CSS for styling. This is very easy and there is no worry if you are new to t.... Read More