help wanted
仓库指标
- Star
- (94,343 star)
- PR 合并指标
- (30 天内没有已合并 PR)
描述
Do you think that can be good to include something about magic strings?
Bad:
let posts = getPostsFromCategory('sports');
Good:
const categories = {
sports: 'sports',
economy: 'economy'
};
let posts = getPostsFromCategory(categories.sports);