Merge branch 'feature-requirement' of http://222.76.244.118:3000/CPICXIM/it-console into feature-requirement
This commit is contained in:
@@ -1,8 +1,9 @@
|
||||
"use strict";
|
||||
/*
|
||||
* @Author: Kane
|
||||
* @Date: 2023-02-10 15:08:53
|
||||
* @LastEditors: Kane
|
||||
* @LastEditTime: 2023-02-11 00:12:33
|
||||
* @LastEditTime: 2023-02-13 00:40:30
|
||||
* @FilePath: /后端辅助工具/src/DataType/DataType.ts
|
||||
* @Description:
|
||||
*
|
||||
@@ -10,9 +11,39 @@
|
||||
*/
|
||||
/*eslint no-unused-vars: "off" */
|
||||
/*eslint @typescript-eslint/no-unused-vars: "off" */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.dataTypes = void 0;
|
||||
//Tuple
|
||||
const tu = [1, 1, 2,];
|
||||
const toArray = [1, 2, "3",];
|
||||
const v1 = toArray;
|
||||
const s1 = "string";
|
||||
console.log(typeof s1);
|
||||
function dataTypes()
|
||||
{
|
||||
const tu = [1, 1, 2,];
|
||||
const toArray = [1, 2, "3",];
|
||||
const v1 = toArray;
|
||||
const s1 = "string";
|
||||
console.log(typeof s1);
|
||||
let point;
|
||||
point = { x: 0, y: 0, };
|
||||
function addOne(x, y = 1)
|
||||
{
|
||||
return x + y;
|
||||
}
|
||||
console.log(addOne(1));
|
||||
function allParams(x, y)
|
||||
{
|
||||
const z = x + y;
|
||||
}
|
||||
//剩余参数,数组形式
|
||||
function overplusArgusWithArray(x, ...argus)
|
||||
{
|
||||
return argus.length;
|
||||
}
|
||||
function overplusArugsWithTuple(x, ...argus)
|
||||
{
|
||||
console.log(`元组形式的参数表${argus},剩余参数的数量${argus.length}。`);
|
||||
console.log(argus[2]);
|
||||
return argus.length;
|
||||
}
|
||||
overplusArugsWithTuple(1, 2, 3, "test");
|
||||
console.log(overplusArgusWithArray(1, 2, 3, 4, 5, 6, 7, 8, 9, 10));
|
||||
}
|
||||
exports.dataTypes = dataTypes;
|
||||
|
@@ -1,24 +1,17 @@
|
||||
const greetings = "Hello, World!";
|
||||
// console.log( greetings );
|
||||
var Season;
|
||||
(function (Season) {
|
||||
Season[Season["spring"] = 1] = "spring";
|
||||
Season[Season["summer"] = 2] = "summer";
|
||||
Season[Season["autumn"] = 3] = "autumn";
|
||||
Season[Season["winter"] = 4] = "winter";
|
||||
})(Season || (Season = {}));
|
||||
;
|
||||
const ar = [
|
||||
"1", "2",
|
||||
];
|
||||
const ar2 = [
|
||||
1, 2, 3, "4",
|
||||
];
|
||||
const ar3 = [1, 2, 3, 4, 5, "7",];
|
||||
const today = Season.spring;
|
||||
function ts() {
|
||||
const message = "message";
|
||||
return message;
|
||||
}
|
||||
ts();
|
||||
console.log(today);
|
||||
"use strict";
|
||||
/*
|
||||
* @Author: Kane
|
||||
* @Date: 2023-02-09 22:14:30
|
||||
* @LastEditors: Kane
|
||||
* @LastEditTime: 2023-02-13 09:31:28
|
||||
* @FilePath: /后端辅助工具/target/main.js
|
||||
* @Description:
|
||||
*
|
||||
* Copyright (c) ${2022} by Kane, All Rights Reserved.
|
||||
*/
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
const DataType_1 = require("./DataType/DataType");
|
||||
const greetings = "hello, this is kane's typescript!";
|
||||
console.log(greetings);
|
||||
console.log("all");
|
||||
(0, DataType_1.dataTypes)();
|
||||
|
Reference in New Issue
Block a user