3

Who use x,y,z as variable names in code .......

Comments
  • 4
    Only when working with coordinates...
  • 0
    A,b,c one, two, three is very typical me temp variables in quick unit tests
  • 1
    who doesn't ???
  • 4
    const sum = (value, otherValue) => value + otherValue;

    const sum = (x, y) => x + y;
Add Comment