From 6b5d661f446958ca300230f14034b873c95df560 Mon Sep 17 00:00:00 2001 From: Chalarangelo Date: Fri, 7 Jan 2022 20:49:17 +0200 Subject: [PATCH] Whitespace fix --- blog_posts/js-static-instance-methods.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog_posts/js-static-instance-methods.md b/blog_posts/js-static-instance-methods.md index 1789035ae..5608b7fba 100644 --- a/blog_posts/js-static-instance-methods.md +++ b/blog_posts/js-static-instance-methods.md @@ -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.