Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9069977
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T17:34:03+00:00 2026-06-16T17:34:03+00:00

I’m new to programming and I’m working on LearnStreet’s Writing functions . My question

  • 0

I’m new to programming and I’m working on LearnStreet’s “Writing functions”.
My question is with the following:

function capitalizeFirst(str) {
    return str.charAt(0).toUpperCase() + str.slice(1);
}

I get that if it were only :

return str.charAt(0).toUpperCase();

only the first letter would be returned and capitalized, but why does adding .slice(1) give the whole string back?

In the case of:

capitalizeFirst("i am apple");
// "I am apple" is returned

but with

function capitalizeFirst(str) {
    return str.charAt(0).toUpperCase() + str.slice(0); // 0 instead of 1
}

capitalizeFirst("i am apple");
// "Ii am apple" is returned

Thanks ahead of time for any help/guidance towards this question.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-16T17:34:04+00:00Added an answer on June 16, 2026 at 5:34 pm

    Your confusion is natural. Almost every programmer makes an off by one error at some point in their life. So I’ll explain it to you using examples:

    Consider the string "Hello World!". In a computer it would be represented in memory as an array of characters. It would look like this:

    +---+---+---+---+---+---+---+---+---+---+---+---+
    | H | e | l | l | o |   | W | o | r | l | d | ! |
    +---+---+---+---+---+---+---+---+---+---+---+---+
    0   1   2   3   4   5   6   7   8   9  10  11  12
    

    Now I want you to notice that there are only 12 boxes (characters), but 13 indices (0 to 12). The indices are in between the characters.

    Note: The last index is always the length of the array.

    A common mistake programmers make is that when they think of an array they think in terms of the boxes and not in terms of indices.

    Important: An array is described in terms of its indices and not the number of boxes.

    Now let’s look at the slice method. This method takes two indices, the second one being optional. It returns a substring of the given string.

    For example if I only wanted "World" from "Hello World!" I would extract it like this ("World" starts at index 6 and ends at index 11):

    "Hello World!".slice(6, 11); // "World"
    

    If I wanted everything after the space in "Hello World!" (i.e. if I wanted "World!") then I could use a short form instead of slice(6, 12). Here the 12 is implied, so I can simply use slice(6):

    "Hello World!".slice(6); // "World!"
    

    I could even use negative indices to extract say the last character of the string without knowing the length of the string:

    "Hello World!".slice(-1); // "!"
    

    The -1 here represents the index length - 1. Since length is defined as the last index it’s simply 12 - 1 in this case. Hence it returns everything after the index 11.

    Understood? So now you understand the fencepost problem.

    This is why you get the entire string as it is when you call slice(0); and you everything after the first character when you call slice(1).

    Always remember to think in terms of indices and not boxes when dealing with arrays.

    Read in between the characters.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
I'm new to using the Perl treebuilder module for HTML parsing and can't figure
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I want use html5's new tag to play a wav file (currently only supported
I'm using v2.0 of ClassTextile.php, with the following call: $testimonial_text = $textile->TextileRestricted($_POST['testimonial']); ... and
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
This could be a duplicate question, but I have no idea what search terms
I don't have much knowledge about the IPv6 protocol, so sorry if the question
I'm trying to convert HTML to plain text. I get many &\#8217; &\#8220; etc.
I need a function that will clean a strings' special characters. I do NOT

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.