Mission 5: The Drone Factory
Create a `Drone` class with a constructor that sets its `id` and methods to control it.
00:00
Mission Objective
Define a class `Drone`. The `constructor` should accept an `id` and set `this.id = id`. Add a method `getStatus()` that logs `this.id + " is operational."`.
Step 1 / 3
System Briefing: Manufacturing Blueprints
Your prototype drone was a success. Now, ALC wants a fleet. You need to create a standardized blueprint (a Class) to manufacture any number of specialized drones.