Tis the season! JavaScriptmas is here again! JavaScriptmas is a FREE annual festive coding event hosted by the online coding school Scrimba, consisting of 24 daily coding challenges, prizes, and more!
What is JavaScriptmas?
JavaScriptmas is a festive coding event hosted by Scrimba from December 1st to 24th. Each day, you will get a new JavaScript challenge to help improve your coding skills, and you can win prizes! You can submit each valid challenge solution twice for two chances of winning! Since it's a raffle, it's fair for developers of any coding level, as it doesn't depend on skill.
To submit your challenge solution, click "Submit Solution" to save your work, which will automatically enter you into the Grand Prize draw. For an additional chance to win, click the "Share" button to spread the JavaScriptmas cheer on X and/or LinkedInโthey will select a second lucky winner from the social posts! The more challenges you solve, the better your chances of winning the grand prize, so keep submitting!
On December 24th, they will be choosing two lucky Grand Prize winners who will each receive:
A 13โ MacBook Air M3
Merch from MDN and Scrimba
Lifetime Scrimba Pro access
Join the fun and improve your JavaScript skills this holiday season!
Community highlights
In the spirit of the festive holiday season, I enjoy showcasing others' work in the community highlights section of my JavaScriptmas articles! I'll be searching X/Twitter, LinkedIn, and the Scrimba Discord channel for "outstanding" submissions by fellow participants to feature. ๐
My solutions
As I do every year, I will participate in JavaScriptmas and share my solutions on social media. I will provide links to the Scrims in these coverage articles as I complete the challenges. ๐ป
Community highlights โฌ
Bree Hall (@bytesofbree)
Bree Hall recorded a step-by-step YouTube video covering how she solved the Day 1 challenge, โLists Without Duplicates,โ to help teach YOU how to code!
The challenge: Grandpa has a Christmas wish list to manage the gifts he plans to request. However, he often accidentally adds the same item more than once, and the list becomes cluttered with duplicates.
In the video, Bree takes on the JavaScript coding challenge where she:
โ Prevents duplicate items from sneaking onto the list (even with sneaky spaces!)
โ Handles tricky edge cases like extra spaces and capitalization differences
โ Adds functionality to edit and delete items dynamically.
Bree Hall is a very talented and dedicated software engineer who shares her experiences and knowledge on her YouTube channel. She supports diversity and representation in the tech industry and helps new coders, developers, and engineers.
Be sure to check out Bree Hallโs website, โbytesofbree,โ where she shares valuable resources and includes all her social links!
If you're a Legend of Zelda fan, be sure to watch herย Frontend Techniques in the Realm of Hyrule with React,ย which she based on her presentation atย THAT Conference WI 2024!
๐ Link to the YouTube video
Zoran Jambor (@cssweekly)
Zoran Jambor also created a valuable YouTube video. His video articulately covers solving the Day 2 challenge, โUgly Advent Calendar,โ while turning it into a mini UI/UX design course!
His comprehensive guide teaches YOU how to improve poor user interfaces using fundamental UI design principles, including valuable tips to elevate your UI skills!
In this YouTube video, you'll learn how to set up a color palette, check color contrast in DevTools, and establish good typography. The video also covers setting up an HTML headline hierarchy, using alignment and whitespace in UI, and fine-tuning text sizes and spacing.
Additional topics include adding colors to UI, tweaking CSS Grid sizing and HSL colors, refining UI, using Font Awesome, making mobile responsive UI, and adding interactivity to Card UI.
While solving the challenge, Zoran introduces you to coolors.co, a versatile online tool that helps designers generate, save, and share beautiful color palettes for their creative projects. This is especially handy for developers who are not familiar with color schemes. Using pre-made color palettes ensures your designs are visually appealing and cohesive, saving time and effort in the creative process.
Zoran also teaches you how to use Font Awesome, a popular icon library that provides scalable vector icons for web projects, enhancing the user interface's visual appeal and functionality.
Another valuable tool Zoran teaches you how to use is Google Fonts, a comprehensive library of open-source fonts that can be easily imported and used in your web projects. Google Fonts allows you to customize typography to align with your project's style, making your web pages more visually engaging and professional.
Check out Zoran's YouTube channel,ย CSS Weekly,ย for practical tutorials, hands-on guides, tool overviews, news, and moreโeverything related to CSS, Browser DevTools, and Visual Studio Code. Subscribe to enhance your skills as a front-end developer and stay updated on the latest concepts, tools, techniques, and methodologies!
You can learn much more about Zoran Jambor on his website!
๐ Link to the YouTube video
Anthony Sistilli (@SistilliAnthony )
Anthony Sistilli skillfully solved the Day 3 challenge, โSanta's Emoji Hac,โ in a YouTube video showing us how to solve the base challenge and the stretch goal in detail!
The challenge involves creating functions to replace the provided negative emoji shortcodes with positive emojis within a sentence. For the stretch goal, replace any negative emojis directly added to the text with positive ones.
const hackedEmojis = {
"angry": "๐", // ๐
"thumbsdown": "๐", // ๐
"man_facepalming": "๐
", // ๐คฆโโ๏ธ
"cry": "โ๐", // ๐ญ
"puke": "๐คฉ" // ๐คฎ
}
For example, :angry:
, which represents a negative emoji, should be replaced with the provided corresponding emoji "๐" ( I hope no one gets angry reading this article! ).
console.log(emojifyPhrase("Just read your article :angry:"));
Just read your article ๐
For the stretch goal of replacing emojis directly โ๐ should be directly replaced with ๐โ Anthony searched Stack Overflow for a Regex expression to detect emojis: If an emoji is detected, it returns true
.
const hackedEmojis = {
"๐ ": "๐",
"๐": "๐",
"๐คฆโโ๏ธ": "๐
",
"๐ญ": "โ๐",
"๐คฎ": "๐คฉ"
}
function isEmoji(char) {
const emojiRegex = /[\p{Emoji_Presentation}|\p{Emoji}]/gu;
return emojiRegex .test(char);
}
console.log(isEmoji("Just read your article ๐ "));
true
Watch the entire YouTube video to see how Anthony uses these coding concepts to solve the base and stretch goal challenges!
Anthony Sistilli has over 100k subscribers on YouTube, where he created a place for tech & startup enthusiasts to hang out, learn, and build cool things together!
You can find all of Anthony's links at links.sistilli.dev
๐ Link to the YouTube video
Carl Storms (@theBIMsider)
Carl Stormsย went above and beyond when solving the Day 4 challenge, โChristmas Movie Emoji Quiz,โ by adding a common movie name variation functionality to accommodate close guesses and deploying it from GitHub! This coding challenge asks participants to create an app that tests players' ability to identify Christmas movies from emoji clues. Players are given three guesses per movie, with feedback provided after each attempt.
Carl first completed the required challenge by developing a dynamic game that randomly selects emoji sets from a predefined list, ensuring each film is used only once. Then, he imaginatively wrote code for smart title comparison functionality that accounts for common variations and uses a similarity algorithm to accept close matches, enhancing the game's flexibility. Well done, Carl!
Carl Storms, also known as the BIMsider, has over 25 years of experience in the AECO industry and is on a journey to learn new coding tricks, including JavaScript, CSS, HTML, C#, and Python. As the Head of Community, Advocacy, and Technology at Newforma, he champions BIM, explores coding, and delves into AI.
Carl shares his insights through articles on The BIMsider and engages audiences as a host on podcasts like Wrenches Gadgets & Hacks, BIMThoughs, The BILT Academy Podcast, and The Simply Complex Podcast.
Links to Carlโs solutions:
Kirsty (@km_fsdev)
For the Day 5 challenge, "Find The Anagrams," Kirsty improved her coding skills by broadening her current understanding of Regex; after all, that's what coding challenges are all about!
In this particular challenge, you're responsible for hosting a quiz at a family gathering. With a list of anagrams, your task is to identify and filter out incorrect pairs using a JavaScript function. This challenge ignores the spaces, so phrases like "Be The Helm" are valid anagrams of "Bethlehem."
Regex, or regular expression, is a sequence of characters that forms a search pattern, often used for pattern matching within strings.
Below is Kirstyโs code, along with detailed instructions on how it works:
let anagrams = [
["Can Assault", "Santa Claus"],
["Refreshed Erudite Londoner", "Rudolf the Red Nose Reindeer"],
["Frosty The Snowman", "Honesty Warms Front"],
["Drastic Charms", "Christmas Cards"],
["Congress Liar", "Carol Singers"],
["The Tin Glints", "Silent Night"],
["Be The Helm", "Bethlehem"],
["Is Car Thieves", "Christmas Eve"]
];
function findAnagrams(array) {
return array.filter((el) => {
let lowerCaseAndSmushedArr = el.map((el) => el.toLowerCase().replace(/\s+/g, ""));
let sortedItems = lowerCaseAndSmushedArr.map((el) => el.split("").sort().join(""));
return sortedItems[0] === sortedItems[1];
});
}
let isAnAnagram = findAnagrams(anagrams);
console.log(isAnAnagram);
[['Can Assault', 'Santa Claus'], ['Refreshed Erudite Londoner', 'Rudolf the Red Nose Reindeer'], ['Congress Liar', 'Carol Singers'], ['Be The Helm', 'Bethlehem']]
Data Structure: You have an array of arrays called
anagrams
, where each sub-array contains two strings that are potential anagrams.Function Definition: The function
findAnagrams
takes an array as an argument and returns a filtered version of that array.Filtering Logic:
* The `filter` method is used to iterate over each pair of strings in the `anagrams` array.
* For each pair, the `map` method is applied to convert both strings to lowercase and remove all spaces using `toLowerCase()` and `replace(/\s+/g, "")`.
* The processed strings are then split into individual characters, sorted alphabetically, and joined back into strings using `split(""), sort(), and join("")`.
* The sorted strings are compared. If they are identical, it means the original strings are anagrams, and the pair is kept in the filtered array.
Result: The
findAnagrams
function returns an array of pairs that are true anagrams. This result is stored inisAnAnagram
.Output: The
console.log(isAnAnagram);
statement prints the filtered list of anagram pairs to the console.
Kirstyโs code solution effectively filters out any pairs that are not anagrams by comparing the sorted character sequences of the strings!
Keep up the fantastic work, Kirsty, and Merry JavaScriptmas! ๐
Drew Buchanan (@ChironTheMage)
Drew Buchanan has been hard at work, not only taking on Scrimbaโs JavaScriptmas challenges but also tackling Advent of Code and LeetCode challenges! What a feat!
Drew is a software developer based in the Twin Cities of Minnesota. He has over 10 years of experience in various industries, including game development, logistics, and finance. Drew always looks for the next puzzle to solve and strives to improve the world through technology. He enjoys walking in nature, playing trading card games, and indulging in donuts in his free time. He is also a connoisseur of memes and horror films!
What specifically caught my eye was Drewโs ASCII Christmas tree! Iโve always been fond of ASCII games and art, and this creation captures that charm. With its colorful characters, the ASCII Christmas tree stands out brilliantly. It illuminates the coding challenge landscape shared on social media, showcasing Drew as a star coder, much like the star atop his ASCII tree!
Links to Drew Buchanan's solutions:
You can also follow Drew Buchanan on Bluesky Social: chironthemage.bsky.social
Digbijaya Lenka @DigbijayaL
Digbijaya Lenka took a different approach to solving the Day 7 โSaaS Landing Pageโ challenge. In this UI/UX Design challenge, coders are asked to write HTML and CSS code to complete it. However, Digbijaya opted out of CSS and tackled the challenge using Tailwind instead!
Tailwind CSS is a utility-first CSS framework that allows developers to build custom designs without leaving their HTML. Unlike traditional CSS, which requires writing custom styles, Tailwind provides a set of utility classes that can be directly applied to HTML elements. This approach enables rapid prototyping and design consistency, as developers can compose complex designs by combining these utility classes. Tailwind's flexibility and efficiency make it a popular choice for developers looking to streamline their styling process and maintain a clean, maintainable codebase.
To use Tailwind in the JavaScriptmas challenge, Digbijaya added the following script tag, which is used to include Tailwind CSS in a web project directly from a Content Delivery Network (CDN).
<script src="https://cdn.tailwindcss.com"></script>
The code block below shows that the โOn-chain Recordโ div uses Tailwind CSS to style a card component with a clean and modern design.
<div class="bg-white p-6 rounded-lg shadow-lg flex flex-col justify-center items-center">
<div class="p-4"><i class="fa-brands fa-cloudscale text-4xl text-red-700"></i></div>
<h3 class="text-2xl font-bold mb-4 text-red-600 ">On-chain Record</h3>
<p class="text-gray-600">Each gift is minted as an NFT on our decentralized protocol, creating a
permanent, tamper-proof record.</p>
<a href="#on-chain-record" class="text-red-500 hover:underline mt-4 inline-block">Learn more</a>
</div>
Here's how the Tailwind classes work:
bg-white
: Sets the background color of the card to white.p-6
: Applies padding of 1.5rem (24px) around the card, creating space between the content and the card's edges.rounded-lg
: Rounds the corners of the card, giving it a softer, more visually appealing look.shadow-lg
: Adds a large shadow to the card, providing a sense of depth and elevation.flex flex-col justify-center items-center
: Uses Flexbox to arrange the card's content in a column, centering the items both vertically and horizontally.p-4
: Adds padding of 1rem (16px) around the icon, ensuring it has space within its container.text-4xl text-red-700
: Sets the icon's font size to 4xl and its color to a dark red, making it prominent and visually striking.text-2xl font-bold mb-4 text-red-600
: Styles the heading with a 2xl font size, bold weight, a bottom margin of 1rem (16px), and a red color, making it stand out.text-gray-600
: Colors the paragraph text in a medium gray, ensuring readability while maintaining a subtle appearance.
Digbijaya used Tailwind exclusively for the entire project, and you can see in his code that he commented out the entire CSS file! He demonstrates once again that there are many ways to tackle programming challenges. Great work, Digbijaya!
โ My JavaScriptmas submissions โ
Date | Scrim |
---|---|
12/01/2024 | Grandpa's Gift List |
12/02/2024 | Ugly Advent Calendar |
12/03/2024 | Santa's Emoji Hack |
If you would like to learn more about my journey with Scrimba and how learning with them may help you, you can read my article: How Scrimba is helping me and many others to become confident, well-prepared web developers
Scrimba has once again impressed and inspired me! You can read my full Scrimba review on my 12/13/2020 post.
"That's one of the best Scrimba reviews I've ever read, @MikeJudeLarocca. Thank you! ๐ "
โ Per Harald Borgen, CEO of Scrimba December 14, 2020
Be sure to listen to the HTML All The Things Podcast!
๐ I also write articles for the HTML All The Things Podcast, which you can read on their website: https://www.htmlallthethings.com/.
Be sure to check out HTML All The Things on socials!
Conclusion
Scrimba's annual JavaScriptmas event is a fun, festive way to commit to coding daily. Whether you are a new coder or a seasoned one, you can share your work with the community, make new friends, and even win prizes!
If you want to continue learning with Scrimba after the FREE event, check out their many FREE courses! If you are ready to commit to becoming a hireable front-end web developer, be on the lookout for their holiday discounted course rates!
Don't miss out on this exciting coding event! Participate in Scrimba's JavaScriptmas today, share your solutions, connect with fellow developers, and improve your skills while having fun! Merry JavaScriptmas! ๐
Let's connect! I'm active on LinkedIn and Twitter.
Top comments (0)