Web Basics: How to Capitalize a Word in JavaScript

Samantha Ming - Jan 31 '19 - - Dev Community

Web Basics by SamanthaMing.com

Back to another round of Web Basics. In the last one, we learned How to Reverse a String in Javascript. By the way, for those new to my community. Web Basics is a series on essential programming topics every web developer should absolutely know! You can catch the web basics posts on my Instagram. Alright enough intro, let's get going with our lesson đŸ€“

Here are the 3 methods I'll be covering:

  • toUpperCase()
  • slice()
  • charAt()
  • toLowerCase()

By the end, you will be able to apply what you learned and solve this basic algorithm challenge:

/** Capitalize a Word
 *
 * Implement a function that takes a word and
 *  return the same word with the first letter capitalized
 *
 * capitalize('aWESOME')
 * Output: 'Awesome'
 * 
 */
Enter fullscreen mode Exit fullscreen mode

You ready! Great, let's get started! đŸ’Ș

Web Basics: toUpperCase()

This method is used to convert all the letters in a string to uppercase. It doesn’t change the original string. Instead, it will return a new modified string 🔅

const name = 'samantha';
const result = name.toUpperCase();

console.log(result); 
// 'SAMANTHA'
Enter fullscreen mode Exit fullscreen mode

Web Basics Examples: toUpperCase()

Ex 1:

Let’s take a look at some use cases with this method. As you can see, it doesn’t affect the original string. If you have a string with numbers, there’s no uppercase of it, so that doesn’t change.

const text = 'Web Basics 101';
const upper = text.toUpperCase();

text; // 'Web Basics 101'
upper; // 'WEB BASICS 101'
Enter fullscreen mode Exit fullscreen mode

Ex 2:

One thing to note. This method is only applicable for strings. If you try to pass in other data types (such as null, undefined, or number), it will throw an error. You will get a TypeError. So make sure you check the type before passing it into this function, otherwise, your app will crash.

(null).toUpperCase(); // TypeError
(undefined).toUpperCase(); // TypeError
(['hi']).toUpperCase(); // TypeError
(45).toUpperCase(); // TypeError
Enter fullscreen mode Exit fullscreen mode

Web Basics: charAt()

This method returns the character at the specified index of a string.

const name = 'samantha';
const result = name.charAt(0);

console.log(result);
// 's'
Enter fullscreen mode Exit fullscreen mode

Web Basics Examples: charAt()

Ex 1:

The default is 0. That means it returns the first letter. Remember, array in JavaScript are 0-indexed. So the first letter starts at index 0.

const text = 'Web Basics';

text.charAt(); // default is 0
// 'W'

text.charAt(text.length - 1); // get the last letter
// 's'

text.charAt(1000); // out of range index
// ''
Enter fullscreen mode Exit fullscreen mode

Ex 2:

What happens if you're a smarty-pants and want to pass something that isn't a number 😝 Well if you try to do that, the default will just take over and you will get the first letter.

// Everything else will be the default (0) 

'hi'.charAt(undefined); // 'h'
'hi'.charAt(null); // 'h'
'hi'.charAt(false); // 'h'
'hi'.charAt('W'); // 'h'
Enter fullscreen mode Exit fullscreen mode

Difference between charAt() and [] notation

If you have a bit more JavaScript experience, you might see others using the bracket notation to access the string.

const name = 'Samantha';

name.charAt(2); // 'm'
name[2]; // 'm'
Enter fullscreen mode Exit fullscreen mode

They give you the same result, so what's the difference. Well, it all comes down to browser support. charAt was introduced in the first ECMAScript 1, so it's supported by all browsers đŸ€©. Whereas the bracket notation was introduced in ECMAScript 5. So bracket notation method doesn't work in Internet Explorer 7 and below. Something definitely to keep in mind, especially when you're working with client projects that require older browser support.

Web Basics: slice()

This method extracts a section of a string and returns the extracted part as a new string 🍏 One more reminder that JavaScript is 0-index. So the first character has a 0 position, and the second character has a 1-position 👍

This method accepts 2 parameters: start and end

start this is where you pass in the starting index to extract. If you don’t pass in anything, the default is 0 (or the first character).

end this is where you pass the index before which to end the extraction. Note, the character at this index will not be included. If you don’t pass in anything, slice() will select all characters from the starting point to the end.

const name = 'samantha';
const sliced = name.slice(0,3);

console.log(sliced); // 'sam'
console.log(name); // 'samantha'
Enter fullscreen mode Exit fullscreen mode

Web Basics Examples: slice()

Ex 1:

slice() is a great way to clone or copy a string. You can either pass in 0 or just let the default kick in with no arguments. If you want the last letter, you can simply pass -1.

'Web Basics'.slice(0); // clone the string
// 'Web Basics'

'Web Basics'.slice(); // default is 0
// 'Web Basics'

'Web Basics'.slice(-1); // get the last letter
// 's'
Enter fullscreen mode Exit fullscreen mode

Ex 2:

You can play around the starting and ending value with either a positive or negative number to extract the part of the string you want.

'Web Basics'.slice(4, 7); // 'Bas'
'Web Basics'.slice(-6, -3); // 'Bas'
'Web Basics'.slice(4, -3); // 'Bas'
Enter fullscreen mode Exit fullscreen mode

Ex 3: Out of range starting index

If you pass a starting value that is greater than the length, an empty string will be returned. On the contrary, if you pass in a negative starting value that exceeds the length, it will simply return the entire string.

'Web Basics'.slice(1000); // ''
'Web Basics'.slice(-1000); // 'Web Basics'
Enter fullscreen mode Exit fullscreen mode

Web Basics: toLowerCase()

This method is used to convert all the letters in a string to lowercase. It doesn’t change the original string. Instead, it will return a new modified string. Essentially the opposite of toUpperCase().

const name = 'SaMaNthA';
const result = name.toLowerCase();

console.log(result); 
// 'samantha'
Enter fullscreen mode Exit fullscreen mode

Web Basics Examples: toLowerCase()

Ex 1:

const original = 'WeB BasIcS 102';
const lower = original.toLowerCase();

console.log(original); // 'WeB BasIcS 102'
console.log(lower); // 'web basics 102'
Enter fullscreen mode Exit fullscreen mode

Ex 2:

Just like toUpperCase(), this method is only applicable for strings. If you try to pass in other data types (such as null, undefined, or number), it will throw an error. You will get a TypeError. So make sure you check the type before passing it into this function, otherwise, your app will crash.

(null).toLowerCase(); // TypeError
(undefined).toLowerCase(); // TypeError
(['hey']).toLowerCase(); // TypeError
(75).toLowerCase(); // TypeError
Enter fullscreen mode Exit fullscreen mode

Algorithm Challenge

Alright, now let's piece everything together! Here's your algorithm challenge! You should be able to solve it with the built-in functions we went through together đŸ’Ș

/** Capitalize a Word
 *
 * Implement a function that takes a word and
 *  return the same word with the first letter capitalized
 *
 * capitalize('hello')
 * Output: 'Hello'
 *
 * capitalize('GREAT')
 * Output: 'Great'
 *
 * capitalize('aWESOME')
 * Output: 'Awesome'
 *
 */
Enter fullscreen mode Exit fullscreen mode

How did you do, did you manage to solve it? I'm not going to put the solution in this blog post. But I will provide a link to my solution, which you can use to compare with mine. Remember there are multiple ways to solve this challenge. There is no right way or wrong way. That's the great thing about programming, you can achieve the same result with a multitude of ways. Of course, some ways are more performant than others. But you know what, as code newbies, let's just focus on being able to solve it. That's the first step. And you can always refactor as you gain more confidence and learn more ways of problem-solving.

My Solution

Resources


Thanks for reading ❀
Say Hello! Instagram | Twitter | Facebook | Medium | Blog

. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
Terabox Video Player