🏫Course Methodology

Each workshop will be guided with the help of this curriculum.

The pages below share more detail on how the AI tools you’ll be learning about work. We hope you enjoy the course!

Please read the following section that will help you on your learning journey.

How to ask questions to get help

Always provide context with questions. Helpful context for technical questions can include:

  1. What is the error message?

  2. What do you think is the problem?

  3. What have you learnt from debugging and googling?

  4. What is the relevant code causing the problem?

Compare the following 3 questions. Notice how it becomes much easier to help someone the more context we have about their problem.

Question 1: No context

"My code is not working. Please help!"

Question 2: Incomplete context

"My code is not working. I'm getting the error "Uncaught TypeError: Cannot read properties of null (reading 'rank')". Please help!"

Question 3: Full context

"I'm getting the error 'Uncaught TypeError: Cannot read properties of null (reading 'rank')' on line 3. On line 3 I'm accessing a property of object card from my card deck. Googling tells me that card must be null, but I am not sure why. I've attached the relevant code below. Any suggestions?"

const cardDeck = [null];
const card = cardDeck[0];
console.log(card.rank);

Last updated