标题:js中运算符与优先级 |
发帖时间:2017-06-14 10:31:10 |
乌托
优先级 运算符
1. ()
2. ++/--
3. * / %
4. + -
5. < <= > >=
6. == !=
7. &&
8. ||
9. = += -= *= /= %=
特殊的运算符 in
经常见for(i in array)
var obj = { name1: "jack", age: 9, abc: undefined };
console.log("name1" in obj); // true
console.log("age" in obj); // true
console.log("age123" in obj); // false
在 array中 i 只有是索引时才有效
在 object中 i 只有是 key时才有效