// There is only 3 types of variables in javascript const a = "Swapnil"; // New type introduced in ES6. Value of let can change any time. const pi = 3.14;// New type introduced in ES6. Value of pi now cannot be changed as this is defined as const. var b = 26;// This is Deprecated as this creates many problems in future.