JavaScript
let age=15;
let name="Ravi";
let price=99.5;
let isPass=true;Number, text, decimal, boolean in 4 languages
A data type tells what kind of value a variable stores: number, text, decimal, or boolean.
A school bag may contain books, lunch box, pencil, and water bottle. Each item has a type.
Do not put quotes around numbers when you want to calculate.
let age=15;
let name="Ravi";
let price=99.5;
let isPass=true;int age=15;
string name="Ravi";
float price=99.5;
bool isPass=true;age=15
name="Ravi"
price=99.5
isPass=True<?php
$age=15;
$name="Ravi";
$price=99.5;
$isPass=true;
?>Data type = kind of value stored.