quote:
Originally posted by CookieRevised
function String(number, character) {
if (typeof(character) === "number") character = String.fromCharCode(character);
var s = "";
for (var i=0; i<number; i++) s += character.charAt(0);
return s;
}
just thought i would point out that this interferes with the jscript String object, hence why cicklow called it "jString"