The Void Maker

Easy+10 XP

Mission Briefing

The dark matter reactor requires absolute nothingness to stabilize. You must generate the programming equivalent of "nothing" to seal the reaction.

The Concept: The Void

In JavaScript, undefined isn't just an error—it's a distinct data type representing the intentional absence of a defined value, or a variable that has been declared but never assigned data.

The Objective

  1. Return the primitive value undefined. Do not return the string "undefined", return the actual data type.

01EXAMPLE 1

Input
Outputundefined

Constraints

  • Return undefined.
FundamentalsData Types
JavaScript
Loading...
3 Hidden

Input Arguments

Expected Output

Click RUN to test your solution