摘要:
直角三角形 <script type="text/javascript"> for(var i=1;i<=8;i++){ for(var j=1;j<=i;j++){//j 指的是*的个数 document.write("*"); } document.write('<br>'); } docume 阅读全文
摘要:
09-伪数组 arguments arguments代表的是实参。有个讲究的地方是:arguments只在函数中使用。 (1)返回函数实参的个数:arguments.length 例子: fn(2,4); fn(2,4,6); fn(2,4,6,8); function fn(a,b,c) { co 阅读全文