[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2023-10-06 UTC."],[[["Creates a filter that checks if a string (left operand) starts with another string (right operand)."],["Accepts either a field or a direct value for both the left and right operands, but not both for the same operand."],["The filter passes if the left operand string starts with the right operand string."],["Useful for selecting features or images based on string properties like file names or IDs."]]],["This creates a filter to check if a string (left operand) begins with another string (right operand). It's configured using `ee.Filter.stringStartsWith`. You define either the field names (`leftField`, `rightField`) or the values (`leftValue`, `rightValue`) for both operands. The filter returns `True` when the left string starts with the right, enabling data subset selection. This can be used as a unary or binary filter.\n"]]