2 Star 2 Fork 1

王小端coder/ts-demo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
number.ts 489 Bytes
一键复制 编辑 原始数据 按行查看 历史
王小端coder 提交于 2019-11-07 14:50 . TypeScript示例
console.log(Number.MAX_VALUE)
console.log(Number.MIN_VALUE)
console.log(Number.NEGATIVE_INFINITY)
console.log(Number.POSITIVE_INFINITY)
var month = 0
if (month <= 0 || month > 12) {
month = Number.NaN
console.log(month)
} else {
console.log("else")
}
function employee(id:number, name:string) {
this.id = id
this.name = name
}
var emp = new employee(123, "admin")
employee.prototype.email = "admin@runoob.com"
console.log(emp.id)
console.log(emp.name)
console.log(emp.email)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/wsclog/ts-demo.git
git@gitee.com:wsclog/ts-demo.git
wsclog
ts-demo
ts-demo
master

搜索帮助