Birdwatch Note Rating
2023-09-30 21:21:38 UTC - NOT_HELPFUL
Rated by Participant: BB7FB53ABB27C9C7EE3108071FFB025F53BB5B6779D060666C32D70CC52419BF
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