JS 和 JSON 的区别

1、JSON 没有抄袭 js里的 function 和 undefined
2、JSON 的字符串 首尾必须是 " "

JS --- VS --- JSON
左边是JS 右边是 JSON
undefined --------------- 没有
null ----------------------- null
['a','b'] ------------------- ["a","b"]
{name:'frank'} ----------- {"name":"frank"}
function fn(){} ------------ 没有
'book' -------------------- "book"
var a ={};a.self = a ----- 搞不定(没有变量)
{ ——proto—— } --------- 没有原型链(只有哈希)

总结:
不能表示 undefined
不能表示 function
不能表示 复杂函数



Tong_sunshine
62 声望10 粉丝

看看看! 再看把你眼珠子抠掉!