枚举的默认编号从 0 开始 12345enum SexType { BOY, GIRL,}console.log(SexType.BOY) // 0 可以自定义起始编号,后面的会自动 +1 12345enum SexType { BOY = 1, GIRL,}console.log(SexType.BOY, SexType.GIRL) // 1, 2 可以自定义值 1234enum Values { TOKEN = "token", SITE = "whbbit.cn",}