Skip to content

Bug Journal

Colin Hart edited this page Dec 13, 2016 · 2 revisions

How to Submit to the Bug Journal!

  1. Copy the error message
  2. Copy the code in question
  3. Write a paragraph explaining:
    • What you thought the error was
    • What the issue turned out to be
    • How you solved it

Example:

Error

ReferenceError: hi is not defined

Code

> a = "hi"
'hi'
> hi.fun

Initially, I thought it was because I had defined the variable a incorrectly. But After looking at it more closely, I realized that I wasn't calling my fun function on the variable a but on a variable hi. I was confusing the variable a with the "hi" string datatype that I saved to the variable


You can see all the bug journal entries here: https://github.com/ga-students/wdi-remote-matey/labels/bug