#learn-coding
Read more stories on Hashnode
Articles with this tag
I found myself completing a course then instantly jumping into another one. It felt amazing to get to the end of a course and to a completed project,...
Instructions Write a function that accepts a string. The function should capitalize the first letter of each word in the string then return the...
Return the character that is most commonly used in the given string ยท Given a string, return the character that is most commonly...
Given a integer, return an integer that is the reverse ordering of numbers // reverseInt(15) === 51 // reverseInt(981) === 189 // reverseInt(500) ===...
Learning to code ยท Given a string, return true if the string is a palindrome or false if it is not. Palindromes are strings that form the same word if...