Skip to content

What is Quality Code

Published: at 06:12 PM
Author: Eder Christian

Personal and direct Notes from Frontend Masters Course “Software Developer Success: Soft Skills & Testing”

Good code is maintainable, stable, and easy to change.

It’s simple and straightforward.

It’s not perfect, but delivers the company’s needs.

Clean Code Basics

Personally, I don’t think Clean Code is a rule for everything. A lot of what’s in the book reflects the author’s own biases. There are definitely useful ideas in it, but not everything applies to every project.

Your new Superpower: Test Driven Development

TDD: Step by Step

Steps

  1. Identify the feature or condition needed in your code.
  2. Write a failing test case for the desired behavior.
  3. Write code to pass the test in the simplest and brute-force way possible.
  4. Run the test to ensure it passes and produces the expected output.
  5. Repeat the process for each new feature or condition needed. Ensure previous cases don’t fail with new changes.
  6. Look for opportunities to refactor or improve the code.

Why TDD?

Tips for learning the Test-Driven-Development Cycle

“Why is this bug happening?”

  1. Work through the code step by step, checking assumptions and outputs.
  2. Use console.log statements.
  3. Utilize the debugger to understand the code state and execution flow.
  4. Try isolating the issue by commenting out code until the problem is identified. Once isolated, use a combination of console.logs and debugger to understand and fix the issue.
  5. Consider talking through the problem with a person, pet, or toy to help you understand what is happening. Determine relevant state and explain to yourself what each piece of state is tracking. Bugs are either logic errors or errors in state.
  6. Ask for help.
  7. If no one is available to help, take a break and give your brain a rest before trying again.

Reference

Software Developer Success: Soft Skills & Testing

Next Post
How to Increase Opportunities