Understanding Variables and Data Types in JavaScript
Variables
In programming language variables are just an container/ memory space where the data is been stored.
example :
let age=20
// memory is allocated to age and there 20 value is bee stored
As
vernekaranirudh-datatypes.hashnode.dev5 min read