标签:div pre 元素 string cto 能力 concat 顺序 cat
点会把点后面的名称直接作为属性名,而方括号会把方括号里面的返回值作为属性名
对于一些特殊的属性名,比如使用数字开头,或者属性名中间出现了一些符号,这些属性只能通过方括号来取
function fn(a, b, c) {
var arr = [a, b, c];
for(var i = 0; i < arr.length - 1; i++) {
for(var j = 0; j < arr.length - i - 1; j++) {
if(arr[j] > arr[j + 1]) {
var temp = arr[j];
arr[j] = arr[j + 1];
arr[j + 1] = temp;
}
}
}
var min = arr[0];
var max = arr[2];
var obj = {
min: min,
max: max
};
return obj;
}
?
var result = fn(23, 12, 33);
console.log(result.min);
console.log(result.max);
?
var arr = [1, 2, 3];
arr[3] = ‘hello‘;
console.log(arr);
console.log(arr[‘length‘]);
?
var obj = {
0: 1,
1: 2,
2: 3,
length: ‘js‘
};
obj[3] = ‘hello‘;
console.log(obj);
console.log(obj.length);
标签:div pre 元素 string cto 能力 concat 顺序 cat
原文地址:http://www.cnblogs.com/xuyang1995/p/5991395.html