日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 >

数组tostring方法_数组toString()方法以及JavaScript中的示例

發(fā)布時(shí)間:2025/3/11 38 豆豆
生活随笔 收集整理的這篇文章主要介紹了 数组tostring方法_数组toString()方法以及JavaScript中的示例 小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

數(shù)組tostring方法

JavaScript toString()方法 (JavaScript toString() method)

toString() method is used to convert an array to the string. It is called with the array name and returns the string containing array elements with comma separated.

toString()方法用于將數(shù)組轉(zhuǎn)換為字符串。 使用數(shù)組名稱調(diào)用它,并返回包含以逗號(hào)分隔的數(shù)組元素的字符串。

Syntax:

句法:

array.toString();

Parameters: None

參數(shù):無

Return value: A string containing array elements

返回值:包含數(shù)組元素的字符串

Example:

例:

Input:var arr = [10, 20, 30, 40, 50];Function call:var str = arr.toString(); Output:str = "10,20,30,40,50"

JavaScript code to convert array’s elements to the string using Array.toString() method

JavaScript代碼使用Array.toString()方法將數(shù)組的元素轉(zhuǎn)換為字符串

<html> <head> <title>JavaScipt Example</title> </head><body><script>var arr1 = ["Manju", "Amit", "Abhi", "Radib"];var arr2 = [10, 20, 30, 40, 50];var arr3 = [-10, -20, 0, 10, 20];var str1 = arr1.toString();var str2 = arr2.toString();var str3 = arr3.toString();document.write("str1: " + str1 + "<br>");document.write("str2: " + str2 + "<br>");document.write("str3: " + str3 + "<br>");document.write("printing the types of the objects...<br>");document.write("type of arr1: " + typeof(arr1) + "<br>");document.write("type of arr2: " + typeof(arr2) + "<br>");document.write("type of arr3: " + typeof(arr3) + "<br>");document.write("type of str1: " + typeof(str1) + "<br>");document.write("type of str2: " + typeof(str2) + "<br>");document.write("type of str3: " + typeof(str3) + "<br>");</script> </body> </html>

Output

輸出量

str1: Manju,Amit,Abhi,Radib str2: 10,20,30,40,50 str3: -10,-20,0,10,20 printing the types of the objects... type of arr1: object type of arr2: object type of arr3: object type of str1: string type of str2: string type of str3: string

翻譯自: https://www.includehelp.com/code-snippets/array-toString-method-with-example-in-javascript.aspx

數(shù)組tostring方法

總結(jié)

以上是生活随笔為你收集整理的数组tostring方法_数组toString()方法以及JavaScript中的示例的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。