0 votes
in JavaScript by
Which of the following type of a variable is volatile?

a) Mutable variable

b) Dynamic variable

c) Volatile variable

d) Immutable variable

1 Answer

0 votes
by

Answer: A

Reason: The variables whose value can be modified that kind of variable are known as Mutable variable. In the JavaScript, only arrays and objects are mutable but not the primitive values.

...