1.
Which of the following are basic data types in JavaScript?
Strings
Numbers
Booleans
Arrays
Correct: A, B, C
Strings, numbers, and booleans are considered basic data types in JavaScript. Strings represent text, numbers represent numeric values, and booleans represent either true or false. Arrays, on the other hand, are not considered a basic data type but rather a complex data type that can hold multiple values.
1 / 32