mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-21 19:16:23 +00:00
748 B
748 B
date | id | title |
---|---|---|
2020-11-13 | 4cd0d42b-3414-4402-95f1-7498fbc52c20 | JavaScript In Operator |
Description
in
1 tells us if indices inside an array or
object have no associated element.
Syntax
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
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