"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var a; a = {}; a = []; a = function () { }; /** * 对象: * { * 属性名:类型, * 属性名:类型... * } * ? 可选的 */ var b; b = { a: 1, c: 'h', d: "你好", e: "就是", f: 1333 }; /** * 函数: * */ var c; c = function fn1(a, b) { return a + b; }; console.log(c(1, '12'));