JavaScript对象转化为字符串

4年以前  |  阅读数:392 次  |  编程语言:JavaScript 
//通过字符串+Object 的方式来转化对象为字符串(实际上是调用 .toString() 方法)
'the Math object:' + Math.ceil(3.4)                // "the Math object:4"
'the JSON object:' + {name:'曹操'}              // "the JSON object:[object Object]"

Copyright© 2013-2020

All Rights Reserved 京ICP备2023019179号-8