外观
强制对 Array#join() 使用分隔符参数
调用 Array#join() 时,最好明确分隔符是什么,而不是依赖于默认逗号(`, ’)分隔符。
此规则中 **不正确** 代码示例
foo.join();
此规则中 **正确** 代码示例
foo.join(",");