Birdwatch Note Rating
2023-10-01 09:33:46 UTC - HELPFUL
Rated by Participant: A4E2048B16AC7C4B246588F5BE6D347973653960661E6A3F0CB1E56E26E8C709
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