Coding
Clases (Style 03-01)
export class ExceptionService{
constructor () { }
}Constants (Style 03-02)
export const mockHeroes = ['Sam', 'Jill']; // Prefer
export const heroesURL = 'api/heroes'; // Prefer
export const VILLAINS_URL = 'api/villains'; // TolerateInterfaces (Style 03-03)
Properties and Methods (Style 03-04)
Import line spacing(Style 03-06)
Was this helpful?