Where is the benefit of using a static method instead of a non-static method? Of course, the static method is class-based and not instance-based and its intended to work as a helper function.
But how exactly is a non-static method not able to achieve the same results?
And how do i call a static method inside a class by another non-static class method in Javascript?
Kind regards