How to reverse a string in Javascript – Fast tips

Valerio Barbera

In this article, we’ll look at three basic ways to reverse a string in JavaScript: utilizing the built-in reverse() method, a for loop, and the spread operator + reverse(). We’ll go over the advantages and disadvantages of each method and show you how to use them in your code.

Method 1: Using the reverse() function

The built-in array reverse() method is the simplest way to reverse a string in JavaScript. This method alters the original string by reversing the character order. Here’s an illustration:

let original = "Hello World";
let reversed = original.split('').reverse().join('');

console.log(reversed);

We begin by transforming the string into an array of characters using the split() method. Then we use the reverse() method to reverse the order of the characters in the array. Finally, the array is converted back into a string using join(). “dlroW olleH” is the resulting reversed string 😅.

Pros

  • It can be written in one line of code.
  • It alters the original array in place, thus no new variable is needed to store the reversed array

Cons

  • It alters the original string, which can be troublesome if other sections of your code rely on the original string.

Method 2: Using a for loop

let original = "Hello World";
let reversed = "";

for (let i = original.length - 1; i >= 0; i--) {
    reversed += original[i];
}

console.log(reversed);

In this example a for loop is used to go through the original string, beginning with the final character and finishing with the first. We add the current character to the reversed string on each iteration.

Pros

  • It is a versatile approach that can be used to add intermediate manipulations during the reverse process.
  • It does not change the original string, it can be used when the original string must be retained.

Cons

  • It necessitates the use of an additional variable (reversed) to record the reversed string, which can consume additional memory.
  • When compared to the reverse() function, it takes more code to be written.

Method 3: Using the Spread Operator and reverse()

This is the same concept of the “Method 1” using the Spread Operator instead of the split() method. Here’s an example:

let original = "Hello World";
let reversed = [...original].reverse().join('');

console.log(reversedString);

Pros

  • It is a very concise way that may be accomplished with a single line of code
  • it does not change the original string, it can be used when the original string must be retained

Cons

  • This approach is incompatible with Internet Explorer or older version of other browsers. So it may not be appropriate for browsers compatibility.

You can follow me on Linkedin or X. I post about building my SaaS business.

Monitor your application for free now

I hope this article can help you make some optimization to your application.

Are you responsible for application development in your company? Consider trying my product Inspector to find out bugs and bottlenecks in your code automatically. Before your customers stumble onto the problem.

Inspector is usable by any IT leader who doesn’t need anything complicated. If you want HTTP monitoring, query insights, and the ability to forward alerts and notifications into your messaging environment try Inspector for free. Register your account.

Or learn more on the website: https://inspector.dev

Related Posts

Mixing LLM Providers Inside a Neuron AI Agent

When I started the v3 of Neuron AI, the first big decision I had to make was not about agents or tools, but about messages. Each LLM provider has its own way of describing a conversation: OpenAI uses one shape, Anthropic another, Gemini and Ollama add their own variations on top. I could have written

Neuron AI Started From Fear – The True Story

In late 2024 the parts of the internet I follow filled up with posts about AI agents. YouTube tutorials. Reddit threads. Blog after blog. Conference recordings. And underneath all of it, one technical stack: Python. LangChain. LangGraph. The vocabulary of an entire field was being written in a language I had never used. In my

Your AI Agent Has Too Many Tools — Here’s the Fix

When I started building agents in PHP, the tool list felt like a feature to celebrate. Connect an email toolkit, a calendar, a CRM, a couple of MCP servers, and suddenly your agent can do almost anything. The problem is that “almost anything” comes with a cost that doesn’t show up until you put the