Time when I got stuck on a problem
I found it difficult during the sprint three board game exercise, where we were required to assign the total number of
dots to the right property so that the total number of dots updates as soon as a user clicks on the dots.
Before finding the solution on the web, I tried to do everything I thought would work, but I couldn't solve the problem.
I used a hint from the readme file to Google, and I went on a few different websites looking for a solution, but I still
couldn't solve the problem. Some of the solutions on Google matched with my existing code, but that was not the right
solution for me, which made me feel frustrated. After failing numerous times, I went on Slack to find if someone else
had the same problem as I did. I went through the discussion board and realised where the mistake was. The mistake was
small, and I realised although I need to try and fix the error myself, I shouldn't waste too many hours. Instead, I
should seek help.
Time when I solved a problem in an elegant way.
When I was working on the built-in
methods kata, I was stuck with the second function "capitalize" where I needed to write a code which makes the first
letter of each word capital.
I went online, did my research, and I found the piece of code from stack overflow that would help solve my problem. To
understand that code I researched on all the methods. When I used that code, I didn't get the desired result. I knew
that the code is right, so, now I needed to find the mistake in my existing code. I had a for loop to get array elements
so, I used console.log technique to see what am I getting back from an array. I found out that instead of receiving a
whole string, I was getting characters one by one in "". I removed the for loop from my function and assigned a function
argument into a variable. Then I used console.log again to check if I am receiving a whole sentence, and I did. I ran my
code after making all the changes, and it worked. I learned that I don't always need a for loop to receive elements of
an array.
Problem solving techniques and process