How many primitive data types are there in JavaScript?
Which object does the setTimeout() method belong to?
const numbers = [5, 6, 2, 3, 7];
const max = Math.max.apply(null, numbers);
A function with no return value is called ___________
Which HTML5 feature allows the caching of web pages and their associated resources?
When a program contains extensive use of event handlers, which of the following is necessary?
What is the purpose of the JavaScript Engine?
Which event is triggered sooner when the document and its elements are ready to manipulate?
Does JavaScript allow Exception Handling?
Predict the output:
const string1 = "hello";
const string2 = String("hello");
const string3 = new String("hello");
const string4 = new String("hello");
console.log(string1 == string2);
console.log(string1 == string3);
console.log(string2 == string3);
console.log(string3 == string4);