JS基础语法(05)-in关键字三个作用
Posted 坤小
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS基础语法(05)-in关键字三个作用相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<script>
//1.for-in循环遍历对象属性
var person =
name: '张三',
age: 38
;
for (var key in person)
console.log(key);//获取对象属性名字符串
console.log(person[key]);
;
//2.判断对象是否 包含 某个属性
var student =
name: '班长',
age: 38,
sex: '男'
;
console.log("name" in student)//true
console.log("age" in student)//true
console.log("sex" in student)//true
console.log("girlFriend" in student)//false
//3.判断数组是否 包含 某个下标
var arr = [10, 20, 30, 40, 50];
console.log(5 in arr);//false
console.log(4 in arr);//true
console.log(0 in arr);//true
//如何判断数组中是否包含某个元素
console.log(arr.indexOf(10));//0 如果有则返回该元素下标
console.log(arr.indexOf(100));//-1 如果没有则返回固定值 -1
</script>
</body>
</html>
以上是关于JS基础语法(05)-in关键字三个作用的主要内容,如果未能解决你的问题,请参考以下文章