- The Unix philosophy, specially the "Make each program do one thing well" [1]
- File and directory navigation/manipulation (ls, cd, mkdir, rm, rmdir, touch, cp, mv)
- ln/unlink/readlink
function Superclass() { | |
} | |
Superclass.prototype.someMethod = function () { | |
console.log('foo'); | |
}; | |
Superclass.staticMethod = function () { | |
console.log('I\'m "static"'); | |
}; |