Back to Freecodecamp

Task 30

curriculum/challenges/english/blocks/learn-how-to-document-code-for-a-project/65e935d6ca6d6b082cf59682.md

latest1.5 KB
Original Source
<!-- (Audio) Brian: You should comment on any complex or tricky parts of your code. -->

--description--

Tricky means something that is difficult to deal with or understand. For example, a tricky problem in math might be hard to solve. It's important to identify tricky parts in tasks, especially in coding, to help others understand better.

--fillInTheBlank--

--sentence--

You should BLANK on any complex or BLANK parts of your code.

--blanks--

comment

--feedback--

It means to make notes or explain something. Brian suggests explaining difficult parts of the code.


tricky

--feedback--

It describes something that is not easy to understand or do. Brian is advising to note down the more challenging parts of the code.

--scene--

json
{
  "setup": {
    "background": "company2-center.png",
    "characters": [
      {
        "character": "Brian",
        "position": {
          "x": 50,
          "y": 15,
          "z": 1.2
        },
        "opacity": 0
      }
    ],
    "audio": {
      "filename": "7.1-2.mp3",
      "startTime": 1,
      "startTimestamp": 21.34,
      "finishTimestamp": 25.24
    }
  },
  "commands": [
    {
      "character": "Brian",
      "opacity": 1,
      "startTime": 0
    },
    {
      "character": "Brian",
      "startTime": 1,
      "finishTime": 4.9,
      "dialogue": {
        "text": "You should comment on any complex or tricky parts of your code.",
        "align": "center"
      }
    },
    {
      "character": "Brian",
      "opacity": 0,
      "startTime": 5.4
    }
  ]
}