编写一个函数,接收一个字符串作为参数,并返回该字符串的反转版本。
function reverseString(str) {
// 你的代码
}
console.log(reverseString("hello")); // 输出 "olleh"
编写一个函数,接收一个字符串作为参数,并返回该字符串的反转版本。
function reverseString(str) {
// 你的代码
}
console.log(reverseString("hello")); // 输出 "olleh"
1、可以考虑转换成数组然后排倒序,在转换成字符串返回(https://www.w3school.com.cn/jsref/jsref_reverse.asp#google_vignette)
2、直接使用for循环降序拼接返回