数组

    1. var a = new Array(1,2,3);
    2. console.log(a);

    函数

    1. var go = new Function('a','b','alert(a*b)');
    2. go(2,3)