wiki/content/20201113090337-javascript_in_operator.md

38 lines
748 B
Markdown
Raw Normal View History

2024-05-06 20:40:05 +00:00
---
2024-10-30 17:34:11 +00:00
date: 2020-11-13
2024-05-06 20:40:05 +00:00
id: 4cd0d42b-3414-4402-95f1-7498fbc52c20
title: JavaScript In Operator
---
# Description
`in`[^1] tells us if indices inside an [array](20200826201029-arrays) or
[object](20200826201605-objects) have no associated element.
# Syntax
``` javascript
const arr = ['a',,'b']
console.log(0 in arr) // true
console.log(1 in arr) // false
console.log(2 in arr) // true
console.log(arr[1]) // undefined
```
``` javascript
const car = { make: "Honda", model: "Accord", year: 1998 };
console.log("make" in car); // true
delete car.make;
if ("make" in car === false) {
car.make = "Suzuki";
}
console.log(car.make); //Suzuki
```
# Footnotes
[^1]: <https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/in>