by BugZeroCodes | Feb 16, 2021 | Blog
Improving your typing skill is so important in the digital world for kids learning online in class, taking notes, at your job, and many more.
Don’t forget to encourage a kid to improve their skill set by working on increasing their speed.
#kidswhocode #skillsets #changeinthecommunity
by BugZeroCodes | Feb 9, 2021 | Blog
Today I completed the Friend or Foe? Kata on Codewars!
It was simple to make a loop to run through each name in the array. All I had to do afterward was to check if the length of the name is equal to 4 and if so, to add it to the “mini-array.” After that, the “mini-array” was printed.
by BugZeroCodes | Feb 1, 2021 | Blog
Today I completed the ‘Incorrect division method’ Kata on Codewars!
The buggy code was caused by the absence of one of the variables. I divided X by the missing variable Y and the code worked!
Check your code to make sure all the variables you intend to use are being used.
by BugZeroCodes | Jan 26, 2021 | Blog
Today I completed the Super Duper Easy Kata on Codewars!
It was difficult to figure out how to check if the parameter was a string. I looked it up and found a method called typeof that returns what type the value is. So I wrote a condition to check if the parameter was a string and return the word “Error” if so. And it worked!
Never give up. Look for help with your problems.
by BugZeroCodes | Jan 19, 2021 | Blog
Today I completed the Grasshopper – Debug Kata on Codewars!
When I looked at the code and instructions, I could find errors all over the code. I read the instructions and after a few tests, managed to make the code work!
Don’t give up because the code isn’t working. Look through it for hidden bugs.
by BugZeroCodes | Jan 13, 2021 | Blog
Two days ago, I completed a Factorial Kata on Codewars!
It went well until I got stuck. As I was looking for the problem, I realized that the code to throw an error only checked if the number was negative, whereas it also had to check if the number was greater than 12. Realizing this, I went back, rewrote the code, and saw that it worked!
Recent Comments