搭建一个数组,可求删查信息

var m = new Map();

m.put('01' , 'abc');

m.put('02' , false) ;

m.put('03' , true);

m.put('04' , new Date());

实现代码如下: