Fizz Buzz Solution JavaScript
Get the JavaScript solution to the popular Fizz Buzz interview problem. Learn how to break down the fizz buzz problem and a step by step breakdown of the solution to the fizz buzz problem
Palindrome Interview Question Solution JavaScript
The palindrome interview question is popular question that is asked in a lot of junior and mid level developer interviews. Here are some possible solutions with an explanation of what they are and which are the best.
Advanced Palindrome Interview Question JavaScript
The palindrome interview question is popular question that is asked in a lot of junior and mid level developer interviews. Here are some possible solutions for palindromes with punctuation, numbers, and spaces with an explanation of what they are and which is the best. Day 1 of 365 Days of Coding
ROT13 Cipher JavaScript Solution
How to create a ROT13 Caesar Cipher in JavaScript. The JavaScript solution for creating a ROT13 cipher with an explanation of what a ROT13 Caesar Cipher is and a couple of the JavaScript solutions that create the cipher. Day 3 of 365 Days
Phone Number Formatter JavaScript
How to format a string or number to a US phone number in JavaScript. Solution for formatting an input to a US phone number format in JavaScript. Write a function that accepts a string of numbers or a number and converts it to a US phone number format.
Snail Array Challenge Solution JavaScript
The JavaScript solution to the CodeWars snail challenge. Given an n x n array, return the array elements arranged from outermost elements to the middle element, traveling clockwise. Day 5 of 365 Days of Coding
How to Truncate a String in JavaScript
How to truncate a string in JavaScript. The challenge is, the function must return the truncated version of the given string up to the given limit followed by "..." if the result is shorter than the original. Return the same string if nothing was truncated. Day 6 of 365 Days of Coding!
How to Get a Sequence in Order With No Duplicate Consecutive Items
JavaScript solution for Implement the function uniqueInOrder which takes as argument a sequence and returns a list of items without any elements with the same value next to each other and preserving the original order of elements. Learn How to Get a Sequence in Order With No Duplicate Consecutive Items in JavaScript Day 12 of 365 Days of Coding