亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

代碼
提交代碼
enum Calculate { a, b, expired = 60 * 60 * 24, length = 'imooc'.length, plus = 'hello ' + 'world' } console.log(Calculate.expired) // 86400 console.log(Calculate.length) // 5 console.log(Calculate.plus) // hello world
運行結果