let x = 1
const y = 1
var z = 1let x = 1
if(x==1){
console.log("Hello")
}
else{
console.log("Bye")
}- Differnce between let and var
- Differnce between let and const
- Imagine you're building an e-commerce website. How would you use JavaScript variables to store and manipulate the price of a product in a shopping cart?
- Show user login mechanism of social media using if else statements and variables