[null,null,["最后更新时间 (UTC):2025-07-26。"],[[["\u003cp\u003e\u003ccode\u003eList.join()\u003c/code\u003e combines all elements of a list into a single string, using a specified separator between each element.\u003c/p\u003e\n"],["\u003cp\u003eThe method accepts an optional \u003ccode\u003eseparator\u003c/code\u003e argument, which defaults to an empty string if not provided, to determine how list elements are joined.\u003c/p\u003e\n"],["\u003cp\u003eWhile \u003ccode\u003eList.join()\u003c/code\u003e primarily works with strings, numbers, and booleans, the behavior for other data types may change in future implementations.\u003c/p\u003e\n"]]],[],null,["# ee.List.join\n\nReturns a string containing the elements of the list joined together with the specified separator between elements.\n\n\u003cbr /\u003e\n\n| **Note:** The string form of list elements which are not strings, numbers, or booleans is currently not well-defined and subject to change.\n\n| Usage | Returns |\n|----------------------------|---------|\n| List.join`(`*separator*`)` | String |\n\n| Argument | Type | Details |\n|--------------|---------------------|---------|\n| this: `list` | List | |\n| `separator` | String, default: \"\" | |"]]