Whitespace fix

This commit is contained in:
Chalarangelo
2022-01-07 20:49:17 +02:00
parent 89b8692c5c
commit 6b5d661f44

View File

@ -19,4 +19,4 @@ Array.isArray(arr); // Static method of Array
arr.push(4); // Instance method of Array
```
In the context of ES6 classes, the `static` keyword is used to define static methods for a class. Conversely, methods not defined as `static` are instance methods.
In the context of ES6 classes, the `static` keyword is used to define static methods for a class. Conversely, methods not defined as `static` are instance methods.