听到这一里才明白原型链原来是这个意思。老师这门课挺好的,唯一不足的就算没有循循渐进,经常在前面的章节出现之后才学的概念。比如第一章的练习题,做出来的前提是要懂对象,很多小白包括我一开始还以为对象是数组,其实是键值。但是既然我为了做题都自己搞懂了,后面才来学对象好像没什么意义……就会导致以上这种矛盾。
2019-08-25
99乘法表
var arr=[];
for(var i=1;i<10;i++){
arr[i]=[];
for(var j=1;j<=i;j++){
arr[i][j]=j+'*'+i+'='+i*j;
if(i*j<10){document.write(arr[i][j]+'&nbsp&nbsp&nbsp&nbsp&nbsp')}
else{document.write(arr[i][j]+'&nbsp&nbsp&nbsp')}
}
document.write('<br/>');
}
var arr=[];
for(var i=1;i<10;i++){
arr[i]=[];
for(var j=1;j<=i;j++){
arr[i][j]=j+'*'+i+'='+i*j;
if(i*j<10){document.write(arr[i][j]+'&nbsp&nbsp&nbsp&nbsp&nbsp')}
else{document.write(arr[i][j]+'&nbsp&nbsp&nbsp')}
}
document.write('<br/>');
}
2019-08-16
最赞回答 / 慕哥7342647
题目要求点1.判断传入函数的两个参数(数组)arr1和arr2长度是否相同;如: arr1 = 【1,true,function() {}】 arr2=[false,null,undefined] 这两个数组长度相同2.判断传入函数的两个参数(数组)arr1和arr2里面的子集是否相似,主要判断数据类型是否相同,顺序可以不同;如: arr1 = 【1,true,function() {}】数据类型包括按顺序:number,booleans,function arr2=[false,null,...
2019-08-01
请输入问答内..为什么val为4或者5输出的是4?switch(val){
case 1:
case 2:
case 3:
console.log(123);//如果是2会输出123
break;
case 4:
case 5:
console.log(45);//如果是4或者5的话会输出4??????
break;
default:
console.log(0);
容...
case 1:
case 2:
case 3:
console.log(123);//如果是2会输出123
break;
case 4:
case 5:
console.log(45);//如果是4或者5的话会输出4??????
break;
default:
console.log(0);
容...
2019-07-10