1D0-720 · Question #82
What are JavaScript expressions and operators used for?
The correct answer is B. Performing operations and evaluating conditions. Option B is correct because JavaScript expressions and operators are the core mechanisms for computing values and making decisions in code - for example, 5 + 3 (arithmetic), x > 10 (comparison), and a && b (logical) all evaluate to a result or control program flow. Why the…
Question
What are JavaScript expressions and operators used for?
Options
- ACreating and styling HTML elements
- BPerforming operations and evaluating conditions
- CStoring data on the server
- DLinking to external JavaScript files
How the community answered
(55 responses)- A2% (1)
- B85% (47)
- C4% (2)
- D9% (5)
Explanation
Option B is correct because JavaScript expressions and operators are the core mechanisms for computing values and making decisions in code - for example, 5 + 3 (arithmetic), x > 10 (comparison), and a && b (logical) all evaluate to a result or control program flow.
Why the distractors are wrong:
- A - Creating and styling HTML elements is the job of the DOM API and CSS, not expressions/operators.
- C - Server-side data storage involves databases or server runtimes (like Node.js + SQL), not JS operators themselves.
- D - Linking external JS files is done with the
<script src="...">HTML tag, a markup concern entirely separate from language operators.
Memory tip: Think of operators as the verbs of JavaScript - they do something to values (add, compare, assign). If a concept is about acting on data, it belongs to expressions and operators.
Topics
Community Discussion
No community discussion yet for this question.