Posts from JavaScript

Create and use dynamic variable names in JavaScript

By Faruque Ahamed Mollick

Dynamic variables are those types of variables that don’t have any specific name in the code through hard coded. A dynamic variable name is auto-generated while running the p.... Read More

Convert a string into a variable name in JavaScript

By Faruque Ahamed Mollick

Did you ever think to use a JavaScript string as a variable name? For example, suppose we have a string given below: var myString = "number"; Can you use the string “number&#.... Read More

Use Strict in JavaScript | Strict mode

By Keshav J

In this tute, we will discuss use strict in JavaScript. You can also call it the strict mode. What is Use Strict? The "use strict" is a JavaScript directive used to execute JavaScr.... Read More

Get index or position of a JavaScript array item

By Faruque Ahamed Mollick

Each javaScript array item has an index number that tells us the position of that item in that array. Here in this task, we are going to take a JavaScript array and then find the i.... Read More

How to solve Tiling Problem in JavaScript

By Swastik Panja

In this tutorial, we will learn how to solve the Tiling Problem in Javascript. Many of you already know what a Tiling Problem is, still I am going to explain it. We will be usingĀ .... Read More

JavaScript Accordion Component Project

By Shivam Purohit

Hello, developers in this tutorial you are going to learn how to create a JavaScipt Accordion Component Project. Accordions on a web page help in hiding and displaying any content .... Read More

HTML Game Using JavaScript DiceRoll

By Shivam Purohit

Hello Developers, in this tutorial you are going to learn HTML Game using JavaScript where I will show you how you can actually create a game with the help of an example. So in thi.... Read More

Mortgage Loan Calculator Using JavaScript

By Shivam Purohit

Hello Developers, in this tutorial you are going to learn a very interesting topic i.e. mortgage calculator using JavaScript. The main feature of the mortgage calculator is to calc.... Read More