保存进度!

This commit is contained in:
2023-02-10 18:38:33 +08:00
parent a5fa62c5d0
commit e142a2a624
9 changed files with 1553 additions and 19 deletions

View File

@@ -0,0 +1,15 @@
/*
* @Author: Kane
* @Date: 2023-02-10 15:08:53
* @LastEditors: Kane
* @LastEditTime: 2023-02-10 15:15:41
* @FilePath: /后端辅助工具/src/DataType/DataType.ts
* @Description:
*
* Copyright (c) ${2022} by Kane, All Rights Reserved.
*/
/* eslint */
//Tuple
var tu = [1, 1, 2,];
var toArray = [1, 2, "3",];
var v1 = toArray;

View File

@@ -1,5 +1,5 @@
var greetings = "Hello, World!";
console.log(greetings);
// console.log( greetings );
var Season;
(function (Season) {
Season[Season["spring"] = 1] = "spring";
@@ -8,5 +8,17 @@ var Season;
Season[Season["winter"] = 4] = "winter";
})(Season || (Season = {}));
;
var ar = [
"1", "2",
];
var ar2 = [
1, 2, 3, "4",
];
var ar3 = [1, 2, 3, 4, 5, "7",];
var today = Season.spring;
function ts() {
var message = "message";
return message;
}
ts();
console.log(today);