Course · Section 14: Object-Oriented Programming (OOP) With JavaScript · Lecture 228: Static Methods
Using a class with a static `range(n)` method, implement `staticRange(n)` returning `[0, 1, ..., n-1]`.
+ 1 hidden test run on Submit.
A static method is a class-level utility invoked without an instance.
Run your code to see results.