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()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。