ปกติ php จะมีคำสั่งสำหรับทวนตัวอักษรแบบง่ายๆ แต่ java sctipt ไม่มี ถ้าอยากให้มีก็ไม่ยาก เอาโค๊ดนี้ไปเลย
String.prototype.repeat = function(num) { return new Array(isNaN(num)? 1 : ++num).join(this); }
วิธีใช้ก็
var foo = "hello"; alert(foo.repeat(10));
ไม่ยากเลยใช่ไหม