LEVELING UP

Player 3 πŸ‘ΆπŸ» has entered the game


  • home

  • code

  • archives

  • tags

  • resume

Variables

Posted on 05-14-2018

Monday Clean Code

Use meaningful and pronounceable variable names

Bad:

1
const yyyymmdstr = moment().format('YYYY/MM/DD');

Good:

1
const currentDate = moment().format('YYYY/MM/DD');

# monday clean code
Use the same vocabulary for the same type of variable
Use searchable names
  • Table of Contents
  • Overview
nehcob

nehcob

a tiny player of massively multiplayer online role-playing game named EARTH ONLINE

32 posts
39 tags
  1. 1. Monday Clean Code
  2. 2. Use meaningful and pronounceable variable names
© 2019 nehcob
Powered by Hexo
Theme - NexT.Muse