js字串大小寫轉換方法有tolowercase()和touppercase(),就是分別將字串轉化成小寫和大寫
tolowercase()作用:將字串轉化成小寫
引數:無
返回值:轉換成小寫的字串
touppercase()
console.log('abc'.tolowercase());
console.log('abc'.touppercase());
1doctype html
>
2<
html
lang
="en"
>
3<
head
>
4<
meta
charset
="utf-8"
>
5<
title
>tolowercase()
title
>
6head
>
7<
body
>818
<
script
>
19console.log(
'abc
'.tolowercase());
20console.log(
'abc
'.touppercase());
21script
>
22body
>
23html
>
JS字串常用方法(自) 8 字串查詢
字串查詢方法有6個,startswith searchstring,position endswith searchstring,length search regexp indexof searchvalue,fromindex lastindexof searchvalue,fromindex ...
JS字串常用方法(自) 5 字串分割
字串分割方法是split separator separator 分割符 分隔符是字串,可以是多個字元,返回值是分割成的陣列 split separator 作用 將字串分割成陣列 引數 separator 分割符 分隔符是字串,可以是多個字元 返回值 分割成的陣列 console.log fry ...
JS字串常用方法(自) 3 字串重複
字串重複的函式是repeat 作用是對字串進行重複,引數是count 重複次數 返回值是成功操作的字串。repeat 作用 對字串進行重複 引數 count 重複次數 返回值 重複操作之後的字串 console.log abc repeat 2 abcabc 1 doctype html 2 htm...