// JavaScript console.log()´òÓ¡»»ÐÐÊä³ö //node -node MTable.js function multiplication(){ var str = ""; for (var i = 1; i <= 9; i++) { for (var j = 1; j <= i; j++) { str += i + "*" + j + "=" + i * j + " "; } str+="\r\n"; } console.log(str); } multiplication();