2017/4/6

2017-04-06  本文已影响0人  风吹过的空气

typeof的用法

'number': 数字
'string': 字符串
'boolean': 布尔值
'function': 函数
'object': 对象或者数组(包括null)
typeof(123) === 'number'
typeof('123') === 'string'
typeof(null) === 'object'
typeof(function() {}) === 'function'
typeof([]) === 'object'
typeof({}) === 'object'
typeof(undefined) === 'undefined'

Map的使用方法

var m = new Map([['Michael', 95], ['Bob', 75], ['Tracy', 85]]);
m.get('Michael'); // 95
上一篇下一篇

猜你喜欢

热点阅读