A Reactjs coding style guide
This project is maintained by LinuxDevil
Default arguments are often cleaner than short circuiting.
Bad:
function loadPages(count?: number) {
const loadCount = count !== undefined ? count : 10;
// ...
}
Good:
function loadPages(count: number = 10) {
// ...
}