This is just a test
Lorem ipsum just some test.
This post is designed to test the search functionality. Try searching for keywords like “Lorem”, “code snippets”, or “upDown” to see how the search behaves.
Here’s a code example to test:
function upDown(input) {
const result = input
.split('')
.map((char, index) => index % 2 === 0 ? char.toUpperCase() : char.toLowerCase())
.join('');
console.log(`result: ${result}`);
return result;
}
upDown('SearchTest123');
// Output: "SeArChTeSt123"
That’s it!