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.
How to Do Form Validation Without JavaScript
How to Do Form Validation Without JavaScript! Solution for how to do form validation with HTML. How to validate using only HTML. Form validation with no JavaScript. Day 10 of 365 Days of Coding
Day 10 Challenge
Day 10 of 365 Days of Coding! Front End challenge 1, Part 3. Create a page with a sign up form. It can have any input but you must require, first name, last name, phone number and email. The email must be a valid email and phone number should be formatted. Part three: Add validation for the email and phone number fields.
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.
Flatten and Sort an Array of Arrays JavaScript
How to flatten, filter, and sort and array in JavaScript. The solution for a popular interview question flatten an array taken one step further to make it an array with only the unique values and have it sorted in numerical order.
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
Day 1 Challenge
Day 1 of 365 days of coding challenge: The palindrome interview question is popular question that is asked in a lot of junior and mid level developer interviews.