static is an ES6 keyword used to attach methods to a class
class Project { static getDefaultId() { return 1; } } Project.getDefaultId(); // 1