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

What is the correct way to declare a JavaScript class?

A). class Rectangle {}

B). let Rectangle = {}

C). function Rectangle() {}

D). Rectangle {}

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');

What is the purpose of the 'typeof' operator in JavaScript?

A). To check if a variable is defined

B). To check the data type of a variable

C). To assign a data type to a variable

D). To increment the value of a variable

Which operator is used for strict inequality in JavaScript?

A). !==

B). !=

C). <>

D). /=

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

Which statement correctly declares a JavaScript arrow function?

A). const add = (a, => a + b;

B). function add(a, { return a + b; }

C). const add = function(a, { return a + b; }

D). let add = function(a, { return a + b; };

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 '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

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 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};