3

Got a code exercise. A small cli nodejs tool. Could someone do a code review? https://github.com/kenpeter/mb

Comments
  • 0
    You're using way too much let imo, you could just
    let x = 1,
    y = 2;

    Instead you're doing

    let x = 1,
    let y = 2;
Add Comment