我们需要编写一个JavaScript函数,该函数接受一个字符串并返回一个新字符串,该字符串是原始字符串的反向版本。
唯一的条件是我们不能使用任何内置的String方法,也不能将字符串转换为数组以对其进行反转。
我们将不得不使用循环来遍历字符串并构造一个新的反向字符串。
const str = 'Hello World'; const reverse = (str = '') => { const { length } = str; let res = ''; for(let i = 0; i < length; i++){ const el = str[i]; res = el + res; }; return res; }; console.log(reverse(str))
输出结果
这将产生以下输出-
dlroW olleH