document.write('abc'.repeat(1) + "<br />");
document.write('abc'.repeat(2) + "<br />");
document.write('abc'.repeat(3) + "<br />");
document.write('abc'.repeat(2.5) + "<br />");
document.write('abc'.repeat(0) + "<br />");
document.write('abc'.repeat(-1) + "<br />"); // Error
/*
run:
abc
abcabc
abcabcabc
abcabc
*/