ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
Implement function ToLowerCase() that has a string parameter str, and returns the same string in lowercase. Example 1: ~~~ Input: "Hello" Output: "hello" ~~~ Example 2: ~~~ Input: "here" Output: "here" ~~~ Example 3: ~~~ Input: "LOVELY" Output: "lovely" ~~~ ~~~ var toLowerCase = function(str) { return str.toLowerCase() }; ~~~