JavaScript var vs let vs const Javascript
5 mins read

JavaScript var vs let vs const: Key Differences Explained

JavaScript var vs let vs const If you’ve just started learning JavaScript or you’re diving into modern ES6 code, you’ve definitely seen three different ways to declare a variable: var, let, and const. At first glance, they all seem to do the same thing—store data. But using the wrong one can lead to silent bugs, […]

Education
3 mins read

JavaScript Salary Calculator: Estimate Your Salary

JavaScript Salary Calculator: Estimate Your Salary, In this post we are going make simple application using HTML5, CSS and JavaScript to generate a estimate salary. This JavaScript tutorial is not complex so beginners will find it easy to learn. Folder Structure of project Salary Calculator : Folder name: salary Salary folder contain main file names […]

HTML5
2 mins read

Create a simple MCQ quiz using pure Javascript

In this tutorial we are going to create a simple MCQ quiz using pure Javascript. We will use Javascript function checkAns() to all calculation. Complete source code given below to create  create mcq quiz programmatically so just copy and paste and create html file and open in a browser. Remember we did not use CSS […]

Javascript
3 mins read

LIC Commission Calculator Btech CSE Mini Project

LIC Agent commission calculator mini project for B tech CSE , using HTML5 and pure JavaScript we can easily complete this project . First we need to understand how agent commission calculated .. Calculating LIC (Life Insurance Corporation of India) agent commission involves several factors, including the type of insurance policy, the premium amount, and […]

Javascript
2 mins read

JavaScript adding two integer Computer Lab Btech CSE

In this tutorial we will learn how to create a HTML file(add.html) and add two integer using input element (num1 and num2) and submit button. For calculation we will use pure JavaCript. Create a file name add.html and copy the code given below, save and run in any browser. This java script programme is extensively […]

Wordpress
5 mins read

How to Use Ajax in WordPress Booking Request Example

This post is all about how to use AJAX in WordPress . In this example we will create a booking request section that will send email regarding booking using ajax. I assumes that you already have basic knowledge of WordPress, javascript (jquery), bootstrap…. The code given below is simple to understand and already running on […]

Javascript
3 mins read

Select Removing all option enter new values using Javascript Object

Sometimes We face some problem How can i dynamically remove all options of a drop down box in javascript? How to reset Select box all option and enter new values ? How to create dynamic dropdown from javascript Object if you don’t want to use any database. In this tutorial I will show an example […]

Javascript
2 mins read

Pure JavaScript Simple Calculator Tutorial

In this tutorial we are going to learn pure  JavaScript simple Calculator Application through input text box, complete code is given below and code is easy to understand, still, if you find any kind of difficulty then please comment, I will try to clear you … JavaScript Simple Calculator Complete Code : <!DOCTYPE html> <html […]

Javascript
1 min read

JavaScript tutorial Simple Addition

In this tutorial we are going to learn JavaScript simple addition through input text box, complete code is given below and code is easy to understand , still if you find any kind of difficulty then please comment, I will try to clear you … JavaScript Simple Addition Code  / Script: <!DOCTYPE html> <html lang=”en”> […]

Javascript
2 mins read

Creating a Digital Clock using Pure Javascript

In this post we are going to  create digital clock using pure Java script and HTML5. We have use Java script’s window.load (will started on page load) and setInterval (will update after every 1 second) function. Digital Clock using Pure Java script full Code <!DOCTYPE html> <html lang=”en”> <head> <meta charset=”UTF-8″> <title>Digital Clock</title> <style> #clockArea{ […]