💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、豆包、星火、月之暗面及文生图、文生视频 广告
## 特性: * 不可变 - 操作字符串不会改变原始值,而是返回一个新值 * 是类数组,可以使用 Array.prototype.slice.call(xxx)、Array.form() 转换成数组 * 可以借用数组的 join 和 map 方法 * 不可以借用 reverse, push 等改变原数组的api,因为字符串是不可变的 ## null 和 undefined 没有 toString 方法 ## String(null) 和 String(undefined) 返回字符串 'null' 和 'undefined'