Day 16 Challenge
Day 16 of 365 Days of Coding! Another JavaScript array challenge. Create a function that accepts an array and returns an array of the passed in array with no duplicates. Remove all duplicates from an array in JavaScript
How to Create a Progress Bar HTML, CSS, and JavaScript
Learn how to create a progress bar using HTML, CSS, and JavaScript. I will explain the css behind how to make a progress bar work. I will go through step by step how to make a progress bar primarily out of HTML and CSS. Day 14 of 365 Days of Coding
Day 14 Challenge
Day 14 of 365 Days of Coding! We have another frontend challenge! Create a progress bar. This can be a pretty or as boring as you want. It will likely need HTML, CSS, and JavaScript but can be done without all 3
How to Compare Decimals in JavaScript
How to Compare Decimals in JavaScript. Decimals can be confusing to work with in JavaScript. Get the JavaScript solution for how to compare decimals in JavaScript. There will be some information on what Number.EPSILON is and if you should use it
Day 13 Challenge
Day 13 of 365 Days of Coding! Today we are going to have a JavaScript debugging challenge. You will need to know or learn how to debug and fix a JavaScript function
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
Day 12 Challenge
Day 12 of 365 Days of Coding! Another JavaScript array challenge. Create a function that accepts a string or an array and returns a list of items without any elements with the same value next to each other and preserving the original order of elements.
Day 7 Challenge
Day 7 of 365 Days of Coding! JavaScript Challenge 7. Create a function that accepts and array counts the number of times a particular item shows up in the array.
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!
Day 6 Challenge
Day 6 of 365 Days of Coding! Truncate a string. 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.
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
Day 5 Challenge
Day 5 of 365 days of coding! Today we are borrowing a challenge from Codewars - the snail challenge! Create a function that accepts and array. Given an n x n array, return the array elements arranged from outermost elements to the middle element, traveling clockwise.
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.
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