如果不使用分割反向和聯接函數,那麼會怎麼做這樣的事情?在不使用內置函數的情況下在字符串中反轉字符
鑑於問題:反轉的話在一個字符串 樣品輸入:「Hello World」的 輸出樣本:「世界你好」
<script>
var newString = "";
var theString = prompt("Enter a Phrase that you would like to reverse (Ex. Hello world)");
newString = theString.split(" ").reverse().join(" ")
document.write(newString);
</script>
[字符串中的反向詞]的可能的複製(http://stackoverflow.com/questions/2279344/reversing-words-in -a-string)根據評論不重複。 ***限制使用這些方法。這是一些釘子。去尋找一把螺絲刀把他們放在... *** – xQbert
所以你需要避免使用'split'和'reverse'? – Ben
@Ben Aston是的,它的約束條件之一 –