Return reverse string


Posted by Christy on 2022-04-21

Description: Write a function named reverse that accepts a string and return the reversed string

Note: Don’t use the built-in function reverse()

function reverse(str) {
  let result = "";
  for (let i = str.length - 1; i >= 0; i--) {
    result += str[i];
  }
  return result;
}

console.log(reverse("abcd")); // dcba
console.log(reverse("12345aa")); // aa54321









Related Posts

【THM Walkthrough】Lateral Movement and Pivoting (2)

【THM Walkthrough】Lateral Movement and Pivoting (2)

Linux Command 命令列指令與基本操作入門教學

Linux Command 命令列指令與基本操作入門教學

[JS Behind The Scene] prototype chain-new 在背後到底做了甚麼?

[JS Behind The Scene] prototype chain-new 在背後到底做了甚麼?


Comments