➜ ~ node
> var a = 1;
undefined
> typeof a
'number'
> var b = {}
undefined
> typeof b
'object'
> var c = function() {};
undefined
> typeof c
'function'
> var d = '';
undefined
> typeof d
'string'
➜ ~ node
> var a = 1;
undefined
> typeof a
'number'
> var b = {}
undefined
> typeof b
'object'
> var c = function() {};
undefined
> typeof c
'function'
> var d = '';
undefined
> typeof d
'string'
Leave a Reply