1
2const cars = ["Saab", "Volvo", "BMW"];
3
4cars = ["Toyota", "Volvo", "Audi"]; // ERROR
5
1const example1 = "hello this is string variable" ; //this is string constant
2const example2 = 12345 ; //this is numeric constant
3const example3 = true ; //boolean constant