这个方法的作用正如它听起来的那样——它将字符串中的所有字符转换为小写。 例子:这里,String toLowerCase()被应用到myString变量,结果存储在lowercaseString多变的。经过这次操作后,lowercaseString将包含字符串“hello, world!”。 Javascript letmyString ="Hello, World!";letlowercaseString = myString.toLowerCas...
toLowerCase(); console.log(lowerMessage); // Output: javascript is fun toLowerCase() 语法 用法: str.toLowerCase() 在这里,str 是一个字符串。 参数: toLowerCase() 方法不接受任何参数。 返回: 返回一个新字符串,表示转换为小写的调用字符串。 注意: toLowerCase() 方法在 null 或undefined 上...
In JavaScript, toLowerCase() is a string method that is used to convert a string to lowercase. Because the toLowerCase() method is a method of the String object, it must be invoked through a particular instance of the String class. Syntax In JavaScript, the syntax for the toLowerCase()...
toLowerCase()是Java中String类的方法,用于将字符串中的所有字符转换为小写,返回一个新的String对象,不接受任何参数。 toLowerCase函数详解 toLowerCase函数的基本定义与作用 toLowerCase()函数是Java编程语言中String类的一个方法,其主要功能是将字符串中的所有字符转换为小写形式。这...
In this tutorial, we will learn about the JavaScript String toLowerCase() method with the help of examples. In this article, you will learn about the toLowerCase() method of String with the help of examples.
JavaScript toUpperCase() 方法和 toLowerCase() 方法 1,toUpperCase() 方法用于把字符串转换为大写。 一个新的字符串,在其中 stringObject 的所有小写字符全部被转换为了大写字符。 语法为: stringObject.toUpperCase() 2,toLowerCase() 方法用于把字符串转换为小写。
JavaScript String toLowerCase() Method - The JavaScript String toLowerCase() method converts all the characters in a string to lowercase letters. It does not change the original string, but returns a new string.
Well organized and easy to understand Web building tutorials with lots of examples of how to use HTML, CSS, JavaScript, SQL, Python, PHP, Bootstrap, Java, XML and more.
stringvar str="Welcome To Plus2net"; var a2 = str.toLowerCase(); document.write(a2);// welcome to plus2net Full code is Here var str="Welcome To Plus2net"; var a2 = str.toLowerCase(); document.write(a2); DEMOEnter text in Upper case or both <!-- function ...
constname="JAVASCRIPT";console.log(name.charAt(0).toLowerCase()+name.slice(1));// "jAVASCRIPT" Note: the toLowerCase method doesn’t mutate the original string instead of it returns the new string with the lower case letters. Share: ...