I found that the best use case for classes is dependency injection. Have a constructor, inject your dependencies, then use them in one or more functions. However, you can do the same with functions:
function new_foo(dependency) {
return function(bar) {
// Do something here
}
}
> Use the platform, use JavaScript !!