»
EnglishFrenchVietnamese

Print - Times Table - JavaScriptBank.com

Full version: jsB@nk » Calculation » Equivalent » Times Table
URL: https://www.javascriptbank.com/times-tables.html

Times Table © JavaScriptBank.comThis JavaScript makes a Times table with a value cause visitors enter.

Full version: jsB@nk » Calculation » Equivalent » Times Table
URL: https://www.javascriptbank.com/times-tables.html



HTML
<script language="JavaScript">var start = "0";var amount = "12";var times = prompt("What times tables do you want?","");do {start++;document.write("<DIV>"+start*1+" x "+times*1+" = "+start*times+"</DIV>");}while(start < amount);</script><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->