Advertisement
Spocoman

04. Reverse String

Jan 15th, 2022
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function solve(input) {
  2.  
  3.     let reverseString = '';
  4.  
  5.     for (let i = input.length - 1; i >= 0; i--){
  6.         reverseString += input[i];
  7.     }
  8.     console.log(reverseString);
  9. }
  10.  
  11. Решение с методи:
  12.  
  13. function solve(input) {
  14.                                              // Примерен вход: 'abc'
  15.     let reverseString = input.split("");    // Масив от чарове: ['a','b','c']
  16.     reverseString.reverse();               // Обръща елементите:['c','b','a']
  17.     reverseString = reverseString.join("");// Слепва елементите по "": 'cba'
  18.     console.log(reverseString);
  19. }
  20.  
  21. Или така:
  22.  
  23. function solve(input) {
  24.  
  25.        console.log(input.split("").reverse().join(""));  
  26. //или: console.log([...input].reverse().join(""));
  27.  
  28. }
  29.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement