Insha Profile picture
Oct 15, 2021 18 tweets 5 min read Read on X
Top 13 JavaScript String methods every JS beginner should know!!

A Thread 👇
A quick recap of JavaScript Strings:

Strings are used for storing and manipulating text in JavaScript.
Strings can be enclosed within either single quotes, double quotes, or backticks.

Here's a simple demonstration of creating Strings.
Some of the commonly used JavaScript String methods:

string.length
charAt(index)
concat()
replace()
split()
slice(start, end)
substring(start,end)
substr(start, length)
toLowerCase()
toUpperCase()
includes()
trim()
padStart() and padEnd()
1️⃣ String Length

The length property is a read-only property that returns the length of a string.
There will be no effect if we try to change it manually.
2️⃣ charAt(index)

This method provides the char value present at the specified index.

The charAt() method takes in the index as a parameter - An integer between 0 and "str.length - 1" and returns the char value at the specified index.
3️⃣concat()

The concat() method concatenates two or more strings and returns a new string containing the combined text of the strings provided.
If the arguments are not of the type string, they are converted to string values before concatenating.
4️⃣ replace()

The JavaScript string replace() method is used to replace a part of a given string with a new substring.

Note: The replace() method does not change the string it is called on. It simply returns a new string.
5️⃣ split()

This string method splits a string into a substring array, then returns that newly created array.

It takes in 2 parameters - pattern describing where each split should occur and the separator can be a simple string or it can be a regular expression.
6️⃣ slice(start, end)

The slice() method extracts and returns a part of the string from start to (excluding) the end.

If there's no second argument specified, then splice method goes till the end of the string.

Negative values from start/end is also possible.
7️⃣ substring(start,end)

This method is almost similar to slice().

The substring() method returns the part of a string between start and end.

It takes in 2 parameters: starting index and the ending index. Negative arguments are not supported, they're r=treated as 0.
8️⃣ substr(start, length)

This method takes in two parameters: first one is the starting index and the second parameter specifies the length of the extracted part.
9️⃣ toLowerCase()

The toLowerCase() method returns the string converted to lowercase.
🔟 toUpperCase()

The toUpperCase() method returns the string converted to uppercase.
1️⃣1️⃣ includes()

The includes() method performs a search to determine whether one string may be found within another string, returning true or false as appropriate.
1️⃣2️⃣ trim()

The trim() method removes whitespace from both sides of a string.
1️⃣3️⃣ String Padding- padStart() and padEnd()

The padStart() and padEnd() methods support padding at the beginning and at the end of a string.

It takes in the two-parameter:
1- targetLength: length of the final string
2- padString: The string to pad the current string with.
All string methods return a new string. They don't modify the original string.
In other words, Strings are immutable.
That's all for this thread!

In JavaScript, strings are of great importance and are most commonly used.
A string can represent an object as well as the primitive data type.

If you learned something new from this thread make sure to retweet it. 🔥😊

• • •

Missing some Tweet in this thread? You can try to force a refresh
 

Keep Current with Insha

Insha Profile picture

Stay in touch and get notified when new unrolls are available from this author!

Read all threads

This Thread may be Removed Anytime!

PDF

Twitter may remove this content at anytime! Save it as PDF for later use!

Try unrolling a thread yourself!

how to unroll video
  1. Follow @ThreadReaderApp to mention us!

  2. From a Twitter thread mention us with a keyword "unroll"
@threadreaderapp unroll

Practice here first or read more on our help page!

More from @Insharamin

Mar 11, 2023
10 repositories that will transform the way you approach technical interviews.

A Thread 👇🏻
1. Coding University Interview

A complete computer science study plan to become a software engineer. This GitHub repo will take you from ground level to advanced concepts in a systematic manner.

🔗 github.com/jwasham/coding…
2. Tech Interview Handbook

This repository has practical content that covers all phases of a technical interview, from applying for a job to passing the interviews to offer negotiation.

🔗 github.com/yangshun/tech-…
Read 12 tweets
Mar 10, 2023
TED Talks are life-changing.

Here are 10 most popular TED Talks of all time ↓
1. The puzzle of motivation: Dan Pink

2. How to make stress your friend: Kelly McGonigal

Read 12 tweets
Feb 14, 2023
Use these 5 Websites to accelerate your learning in JavaScript 🧵
1. The Modern JavaScript

Learn everything from the basics to advanced topics with simple, but detailed explanations.

javascript.info
2. JavaScript - The Complete Guide

JavaScript is omnipresent, be it front-end, back-end, or full stack.

Learn modern JavaScript from this guided roadmap filled with content, examples, resources, & project ideas.

On completion, earn a certificate too!

showwcase.com/roadmap/7/java…
Read 7 tweets
Feb 13, 2023
Google Chrome has over 137,000 extensions. These 10 will save you hundreds of hours (all free):
1. Scribe

Gone are the days of tedious step-by-step guides! Scribe lets you create automatic tutorials for your team with the click of a button.

chrome.google.com/webstore/detai…
2. WordTune

Wordtune is an AI-powered writing tool that understands what you’re trying to say and suggests ways to make your writing clearer, more compelling, and authentic.

chrome.google.com/webstore/detai…
Read 12 tweets
Nov 30, 2022
10 tips and tricks that will transform the way you search on Google!

A Thread 👇
1. Use quotation marks to search for an exact phrase.
2. The site: allows you to perform a search for a particular website or content.
Read 12 tweets
Nov 28, 2022
STEP UP YOUR CODING GAME!

Coding may not be as addictive as candy crush, but these 9 games will help you enhance your coding skills and have fun while doing it!

A Thread 👇
1. CodinGame

CodinGame offers up fun free games to help learn more than 25 programming languages, including JavaScript, Ruby, and PHP.

codingame.com/start
2. CodeCombat

CodeCombat is aimed at helping students embrace learning as they play and write code from the very start of their adventure.

codecombat.com
Read 14 tweets

Did Thread Reader help you today?

Support us! We are indie developers!


This site is made by just two indie developers on a laptop doing marketing, support and development! Read more about the story.

Become a Premium Member ($3/month or $30/year) and get exclusive features!

Become Premium

Don't want to be a Premium member but still want to support us?

Make a small donation by buying us coffee ($5) or help with server cost ($10)

Donate via Paypal

Or Donate anonymously using crypto!

Ethereum

0xfe58350B80634f60Fa6Dc149a72b4DFbc17D341E copy

Bitcoin

3ATGMxNzCUFzxpMCHL5sWSt4DVtS8UqXpi copy

Thank you for your support!

Follow Us!

:(