JavaScript
let name="Ravi";
let age=15;JS let, C++ datatype, Python direct assign, PHP $ variable
Variable declaration means creating a variable and getting it ready to store a value.
Before using a storage box, we label it. Declaration is like creating and labeling the box.
Do not forget $ before PHP variable names.
let name="Ravi";
let age=15;string name="Ravi";
int age=15;name="Ravi"
age=15<?php
$name="Ravi";
$age=15;
?>Meaning same. Declaration style changes.