symbol.toString()是JavaScript中的內置函數,用於將指定的Symbol對象轉換為字符串。
用法:
Symbol().toString();
在此,Symbol()是要轉換為字符串的指定符號對象。
參數:該函數不接受任何參數。
返回值:此函數返回指定符號對象的轉換後的字符串。
JavaScript代碼顯示此函數的工作方式:
示例1:
<script>
// Creating some Symbol objects
const A = Symbol('gfg');
const B = Symbol(42);
const C = Symbol();
// Calling toString() function
a = A.toString();
b = B.toString();
c = C.toString();
// Printing the strings which represent
// the above specified Symbol object
document.write(a + "<br>");
document.write(b + "<br>");
document.write(c);
</script>
輸出:
Symbol(gfg) Symbol(42) Symbol()
示例2:
<script>
// Creating some Symbol object and
// Calling toString() function
a = Symbol('Geeks').toString();
b = Symbol.iterator.toString();
c = Symbol.for('Geeks').toString();
// Printing the strings which represent
// the above specified Symbol object
document.write(a +"<br>");
document.write(b +"<br>");
document.write(c);
</script>
輸出:
Symbol(Geeks) Symbol(Symbol.iterator) Symbol(Geeks)
支持的瀏覽器:
- 蘋果Safari 9
- 邊12
- Firefox 36
- 穀歌瀏覽器38
- Opera 25
參考: https://devdocs.io/javascript/global_objects/symbol/tostring
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 JavaScript | symbol.toString()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。