Introduction

Hello, and welcome to today's JavaScript lesson! We are going to unravel a compelling challenge that will refine our skills in string manipulation. This lesson will place particular emphasis on nested loops. Prepare yourself for an intriguing adventure as we explore how to extract odd-indexed characters from each word in a sentence, but only if the word has an even number of characters. Does that sound exciting? Let's dive in!

Task Statement

The task we'll be demonstrating is as follows: We will work with a string representing a sentence in which words are separated by spaces. Your challenge involves creating a JavaScript function that identifies the odd-indexed characters of words that have an even number of characters and then combines these characters into a single string, maintaining the order in which they appeared in the sentence.

Consider this example: "JavaScript programming language is versatile." The word JavaScript has 10 characters (an even number), and we'll select the odd-indexed characters from this word, specifically, a, a, c, i, t. Similarly, we'll select a, g, a, e from language, s from is, and e, s, t, l, . from versatile. We'll skip the word programming because it has an odd length.

If our function is working correctly, it should return "aacitagaesestl.". Isn't it fascinating to see what we can extract from a simple sentence?

Solution Building: Step 1

We will start by splitting the sentence into words using the split method. This will help us create an array containing all the words in the sentence.

function solution(sentence) {
    const words = sentence.split(" ");
    // we will proceed progressively
}
Solution Building: Step 2

We now introduce nested loops: an outer loop that iterates over every single word, and an inner loop that checks every character within each word. First, we'll use an if condition to verify whether a word has an even length. We can determine this by checking whether the length of the word mod 2 equals zero. If it does, the word has an even length!

function solution(sentence) {
    const words = sentence.split(" ");

    for (const w of words) {
        if (w.length % 2 === 0) {  // checks if the length of the word is even
            // we are building up our solution gradually
        }
    }
}
Sign up
Join the 1M+ learners on CodeSignal
Be a part of our community of 1M+ users who develop and demonstrate their skills on CodeSignal