摘要: 1 typeof 是判断类型 2 3 typeof 123 // "number" 4 typeof '123' // "string" 5 typeof false // "boolean" 6 function f() {} 7 typeof f 8 // "function" 9 typeof undefined 10 // "undefin... 阅读全文
posted @ 2017-04-17 14:12 不淡不浓、不如画 阅读(137) 评论(0) 推荐(0) 编辑