Skip to main content

Posts

Showing posts from July, 2021

Switch case in JavaScript | + - * / Operation using switch case

Is this possible to make a desktop application in Javascript | Google Meet clone using electron js

Lost and found project ai based | New Project Idea | Design AI Project

Live Code Editor Project In HTML , CSS , JS - part 1

Turn on or off bulb using JavaScript|Automatically turning light on and off according to time AM/PM

Traffic light program using javascript | An automated traffic signal project in javascript

Traffic light program using javascript | An automated traffic signal project in javascript

  TRAFFIC SIGNAL PROJECT WITH AUTO COUNT DOWN

Conditional statement in javascript| Alternative of Conditional Statemen...

Conditional statement in javascript| Alternative of Conditional Statements

Conditional statements control behavior in JavaScript and determine whether or not pieces of code can run. ... “ If” statements : where if a condition is true it is used to specify execution for a block of code. “Else” statements: where if the same condition is false it specifies the execution for a block of code. How to use Conditional Statements Conditional statements are used to decide the flow of execution based on different conditions. If a condition is true, you can perform one action and if the condition is false, you can perform another action. Different Types of Conditional Statements There are mainly three types of conditional statements in JavaScript. If statement If…Else statement If…Else If…Else statement 1) If statement Syntax: if (condition) { lines of code to be executed if condition is true } You can use If statement if you want to check only a specific condition. Try this yourself: <html> <head> <title>IF Statments!!!</title> <script typ...

How do I create a deployable WAR file in spring boot? | WAR file in visual code | Spring Boot-Maven

How to bundle an Angular app for production

How to setup and create spring boot project in vs code

Configuring spring mvc in 5 steps

Add dependency after creating a project - pom.xml and click to maven-update project    <!-- https://mvnrepository.com/artifact/org.springframework/spring-webmvc --> < dependency >     < groupId > org.springframework </ groupId >     < artifactId > spring-webmvc </ artifactId >     < version > 5.2.4.RELEASE </ version > </ dependency > full code ---- < project xmlns = "http://maven.apache.org/POM/4.0.0" xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance"   xsi:schemaLocation = "http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" >   < modelVersion > 4.0.0 </ modelVersion >   < groupId > com.spring.mvc </ groupId >   < artifactId > springmvc </ artifactId >   < packaging > war </ packaging >   < version > 0.0.1-SNAPSHOT </ version >   < name > springmvc Maven W...

How to Build a Calculator using JavaScript, HTML and CSS

Difference between function Argument and Parameter in JavaScript

JavaScript Functions? Recursive , Built-in , Parameterized Functions In Javascript with example.

  Functions Functions are one of the fundamental building blocks in JavaScript. A function in JavaScript is similar to a procedure—a set of statements that performs a task or calculates a value, but for a procedure to qualify as a function, it should take some input and return an output where there is some obvious relationship between the input and the output. To use a function, you must define it somewhere in the scope from which you wish to call it. Quite often we need to perform a similar action in many places of the script. For example, we need to show a nice-looking message when a visitor logs in, logs out and maybe somewhere else. Functions are the main “building blocks” of the program. They allow the code to be called many times without repetition. Defining functions Function declarations A  function definition  (also called a  function declaration , or  function statement ) consists of the  function  keyword, followed by: The name of the functi...