溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

javascript字符串轉(zhuǎn)換函數(shù)是哪個(gè)

發(fā)布時(shí)間:2021-06-17 15:34:02 來(lái)源:億速云 閱讀:233 作者:小新 欄目:web開發(fā)

這篇文章主要為大家展示了“javascript字符串轉(zhuǎn)換函數(shù)是哪個(gè)”,內(nèi)容簡(jiǎn)而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“javascript字符串轉(zhuǎn)換函數(shù)是哪個(gè)”這篇文章吧。

javascript字符串轉(zhuǎn)換函數(shù):1、toString()函數(shù),可將所有的數(shù)據(jù)都轉(zhuǎn)換為字符串,語(yǔ)法“number.toString(radix)”;2、String()函數(shù),可把對(duì)象的值轉(zhuǎn)換為字符串,語(yǔ)法“String(js對(duì)象)”。

本教程操作環(huán)境:windows7系統(tǒng)、javascript1.8.5版、Dell G3電腦。

JavaScript字符串轉(zhuǎn)換函數(shù)——String()和toString()

1、.toString()可以將所有的的數(shù)據(jù)都轉(zhuǎn)換為字符串,但是要排除nullundefined

例如將false轉(zhuǎn)為字符串類型

<script>
  var str = false.toString();
  console.log(str, typeof str);
</script>

返回的結(jié)果為 false,string

看看null 和 undefined能不能轉(zhuǎn)換為字符串javascript

<blockquote style="margin-right: 0px;" dir="ltr">
<pre class="html" name="code">
<script>
  var str = null.toString();
  console.log(str, typeof str);
</script>

結(jié)果程序報(bào)錯(cuò)

<script>
  var str = undefined.toString();
  console.log(str,typeof str);
</script>

程序也報(bào)錯(cuò)

.toString() 括號(hào)中的可以寫一個(gè)數(shù)字,代表進(jìn)制,對(duì)應(yīng)進(jìn)制字符串

二進(jìn)制:.toString(2);

八進(jìn)制:.toString(8);

十進(jìn)制:.toString(10);

十六進(jìn)制:.toString(16);

如:

var c = 123 ;
console.log(c.toString(8));

結(jié)果為

173

2、String()可以將null和undefined轉(zhuǎn)換為字符串。

例如將null轉(zhuǎn)換為字符串

<script>
  var str = String(null);
  console.log(str, typeof str);
</script

返回的結(jié)果為 null,string

將undefined轉(zhuǎn)換為字符串 

<script>
  var str = String(undefined);
  console.log(str, typeof str);
</script>

返回的結(jié)果為 undefined,string

console.log(String(077));

返回結(jié)果:63(如果以0開頭或者以0x開頭也會(huì)被先轉(zhuǎn)為進(jìn)制數(shù),在轉(zhuǎn)為字符串)

以上是“javascript字符串轉(zhuǎn)換函數(shù)是哪個(gè)”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI