Javascript Get Last Element of Array

In this tutorial, I will explain javascript get last element of array. Before getting started, you must know what is an array and the length property of the array. Also read, Generate Javascript Random Number between 1 and 10 What is an array:- Example of an array:- const companies = [‘TCS’,’IBM’,’HCL’,’INFOSYS’]; Length Property of the … Read more

Text slideshow HTML with images using w3 CSS and javascript

Hi friends, in this tutorial you will learn how to create a Text slideshow HTML with images using w3 CSS and javascript. This is a very simple slideshow I have made using custom CSS and w3 CSS. You will find a lot of tutorials on image sliders but it is very rare to find sliders … Read more

Google like scrolling using jquery for multiple images

In this tutorial, you will learn how to use Google like scrolling using jQuery for multiple images. Sometimes we need to scroll the gallery images horizontally one after another. We can do so with the help of HTML and CSS or by using various jQuery plugins available online. But here, I will discuss a g-scrolling … Read more

Javascript String Methods with example

In this tutorial, you will learn the javascript string methods with examples one by one as given below length:- This property returns the length of the given string which means it counts every character of the string and returns the total number of characters in the string. Example:- Output:- Below paragraph returns the length of … Read more

Generate Javascript Random Number between 1 and 10

Hi friends, in this tutorial you will learn how to generate javascript random number between 1 and 10 which means you have to return all the numbers except 10 which means zero to nine. In order to generate random numbers, you should have the idea of two javascript functions as mentioned below Math.random() Math.floor() Math.random( … Read more

HTML Table with Fixed Header and Scrollable Body

Hi friends, In this tutorial, you will learn how to create an HTML table with fixed header and scrollable body using Datatables. The fixed header property helps us to view the header name at a fixed position against the table rows. Actually, there are so many tutorials on this topic such as using bootstrap by … Read more