Sort a Java array in ascending and descending order

By Mitun Kumar Sahu

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

Hash Map in Python

By Karshin Uppal

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

Get the coordinates of the cursor in JavaScript

By Samim

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

How to print backslash “\” in Swift

By Saruque Ahamed Mollick

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

How to concatenate strings in Swift

By Saruque Ahamed Mollick

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

Convert array elements to Uppercase or Lowercase in JavaScript

By Samim

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

Add CSS and Static Files in Django

By Aditi Deo

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

Generate Random Quotes in JavaScript

By Vanshika Namdev

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

Related Posts