Q
Which statement correctly declares a JavaScript module?

Answer & Solution

Answer: Option A
Solution:
Option A correctly declares a JavaScript module with a named export 'myFunc' using the 'export' keyword followed by a function declaration. This is the ES6 syntax for exporting functions, variables, or objects from a module. Options B, C, and D use different syntaxes that are not specific to JavaScript modules. Therefore, option A is the correct way to declare a JavaScript module with a named export.
Related Questions on Average

How do you concatenate strings in JavaScript?

A). Using the + operator

B). Using the - operator

C). Using the * operator

D). Using the / operator

How can you prevent a JavaScript function from executing immediately?

A). Using async/await

B). Using the defer attribute in HTML script tag

C). Wrapping the function in parentheses

D). Using the setTimeout function

Which statement correctly declares a JavaScript array?

A). let colors = ['red', 'green'];

B). const colors = {'red', 'green'};

C). const colors = ['red', 'green'];

D). var colors = ('red', 'green');

How can you add a new element to the end of a JavaScript array?

A). colors.push('blue');

B). colors.add('blue');

C). colors.insert('blue', colors.length);

D). colors[colors.length] = 'blue';

What is the purpose of the 'break' statement in a JavaScript switch case?

A). To continue to the next case

B). To exit the switch statement

C). To restart the switch statement

D). To execute the default case

Which statement correctly declares a JavaScript object?

A). let person = {name: 'John', age: 30};

B). const person = ('name' => 'John', 'age' => 30);

C). const person = ['name', 'John', 'age', 30];

D). var person = {name: 'John', age: 30};

What is the purpose of the 'constructor' method in a JavaScript class?

A). To create new instances of the class

B). To initialize class properties

C). To define class methods

D). To define class inheritance

What does the '===' operator check in JavaScript?

A). Type and value equality

B). Type equality only

C). Value equality only

D). Reference equality

How do you access the last element of a JavaScript array?

A). colors[colors.length - 1];

B). colors.last();

C). colors[-1];

D). colors.getLast();

What is the purpose of the 'continue' statement in a JavaScript loop?

A). To exit the loop

B). To skip the current iteration

C). To restart the loop

D). To execute the loop body again