// function fun ({x,y,k = 1, j= 2}){
// console.log(x);
// console.log(y);
// console.log(j);
// };
// fun({x:1,y:2,j:3,d:4});
// x = 'ssss'
// console.log(x)
// g = 'xxxx';
// for(var key in form){
// typeof key;
// console.log(typeof key);
// }
// console.log(form[a]);
// form['a'] = [g]
// console.log(form);
// if (form[g] == ''){
// console.log('我为空');
// }
// form = {
// a:'',
// }
// var a1 = 'ssss';
// var a2 = new String('xxx')
// var a = form.toString();
// console.log(a);
// console.log(a1);
// console.log(a2);
// console.log('d'+form);
// tableData = [
// {
// "displaySeq": 0,
// "paintcolor": "purple",
// "paintcolorDbid": "5",
// "$index": 0
// },
// {
// "displaySeq": 1,
// "paintcolor": "gold",
// "paintcolorDbid": "7",
// "$index": 1
// },
// {
// "displaySeq": 2,
// "paintcolor": "gray",
// "paintcolorDbid": "6",
// "$index": 2
// },
// {
// "displaySeq": 3,
// "paintcolor": "green",
// "paintcolorDbid": "3",
// "$index": 3
// },
// {
// "displaySeq": 4,
// "paintcolor": "brown",
// "paintcolorDbid": "8",
// "$index": 4
// },
// {
// "displaySeq": 5,
// "paintcolor": "red",
// "paintcolorDbid": "1",
// "$index": 6
// },
// {
// "displaySeq": 6,
// "paintcolor": "yellow",
// "paintcolorDbid": "2",
// "$index": 5
// }
// ]
// console.log(typeof tableData);
// console.log(tableData);
// JSON.stringify(tableData);
// console.log(tableData);
// console.log(typeof tableData);
// var json_str = '{"name":"xiao","age":12}';
// console.log(json_str);
// var b = JSON.parse(json_str);
// console.log(b);
// var a = 'xxxx';
// console.log(a)
var a = [];
var b = {
name:'yang',
id:123,
};
// console.log(b.hasOwnProperty('id'));
// console.log(b);
// a = [b];
console.log(b[Object.keys(b)[0]]);
// maincolor = [
// {
// "dataTotal": 0,
// "currentPage": 1,
// "currentPageSize": 50,
// "updateCounter": 0,
// "department": null,
// "subcolortype": null,
// "maincolortype": "黑色",
// "departmentDbid": null,
// "maincolortypeDbid": "ff8080817c78f4b8017c790c59411073",
// "subcolortypeDbid": null
// },
// {
// "dataTotal": 0,
// "currentPage": 1,
// "currentPageSize": 50,
// "updateCounter": 0,
// "department": null,
// "subcolortype": null,
// "maincolortype": "白色",
// "departmentDbid": null,
// "maincolortypeDbid": "xflTest_001",
// "subcolortypeDbid": null
// },
// {
// "dataTotal": 0,
// "currentPage": 1,
// "currentPageSize": 50,
// "updateCounter": 0,
// "department": null,
// "subcolortype": null,
// "maincolortype": "绿色",
// "departmentDbid": null,
// "maincolortypeDbid": "xflTest_002",
// "subcolortypeDbid": null
// },
// {
// "dataTotal": 0,
// "currentPage": 1,
// "currentPageSize": 50,
// "updateCounter": 0,
// "department": null,
// "subcolortype": null,
// "maincolortype": "银色",
// "departmentDbid": null,
// "maincolortypeDbid": "ff8080817c78f4b8017c790b4332106e",
// "subcolortypeDbid": null
// },
// {
// "dataTotal": 0,
// "currentPage": 1,
// "currentPageSize": 50,
// "updateCounter": 0,
// "department": null,
// "subcolortype": null,
// "maincolortype": "黄色",
// "departmentDbid": null,
// "maincolortypeDbid": "ff8080817c78f4b8017c790bbc331071",
// "subcolortypeDbid": null
// }
// ];
// var maincolortypecode= {};
// for (var i = 0; i < maincolor.length; i++) {
// maincolortypecode[maincolor[i].maincolortypeDbid] = maincolor[i].maincolortype;
// }
// console.log(maincolor.length);
// // console.log(maincolor[0]);
// // console.log(maincolor[0].maincolortypeDbid);
// // console.log(maincolor[0].maincolortype);
// // maincolortypecode[maincolor[0].maincolortypeDbid] = maincolor[0].maincolortype;
// console.log(maincolortypecode);
console