Birdwatch Note Rating
2023-09-30 21:02:30 UTC - NOT_HELPFUL
Rated by Participant: 450A447C004B408EE41F8F573568104E81D67C53DDF338491DD04C4323E5A551
Participant Details
Original Note:
In JavaScript, the 'x in y' operator is used to check if an object contains a key. '4 in [0,1,2,3,4]' is false because, like most languages, in JS arrays start from 0. Checking that an array contains a value can be done with 'y.includes(x)'. https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/in
All Note Details