xgqfrms™, xgqfrms® : xgqfrms's offical website of cnblogs! xgqfrms™, xgqfrms® : xgqfrms's offical website of GitHub!

free online code editor

free online code editor

online vscode

https://stackblitz.com/

https://codesandbox.io/

https://codeshare.io/

https://playcode.io/

online vscode editor

Visual Studio Codespaces

https://online.visualstudio.com/

https://code.visualstudio.com/docs/remote/codespaces

OK

https://online.visualstudio.com/environment/5fbe727c-65e7-4401-8a37-50ecb2bc8d6f

TypeScript

interface IProps {
    firstName: string,
    lastName: string,
    age?: number;
    gender?: string,
}

// 泛型
class Human<T> {
    constructor(props) {
        // props
    }
}

// 类型“Human”不是泛型类型
class Person extends Human<IProps> {
    // [x: string]: any;
    firstName: any;
    lastName: any;
    constructor(props) {
        super(props);
        const {
            firstName,
            lastName,
        } = props;
        this.firstName = firstName;
        this.lastName = lastName;
    }
}

shit azure & credit card

code-server

https://github.com/cdr/code-server

https://areknawo.com/vs-code-goes-online/




©xgqfrms 2012-2020

www.cnblogs.com 发布文章使用:只允许注册用户才可以访问!


posted @   xgqfrms  阅读(287)  评论(4编辑  收藏  举报
编辑推荐:
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
阅读排行:
· DeepSeek 开源周回顾「GitHub 热点速览」
· 记一次.NET内存居高不下排查解决与启示
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET 10首个预览版发布:重大改进与新特性概览!
· .NET10 - 预览版1新功能体验(一)
历史上的今天:
2019-05-16 webpack & webpack-cli
2019-05-16 onsen & UI & vue & mobile UI
2018-05-16 MySQL & CMD
2018-05-16 swagger ui
2018-05-16 React refs all in one
2016-05-16 用户信息 设置 模板
2016-05-16 网站访问者 浏览器 操作系统 等 信息检测! Lightweight JavaScript-based User-Agent string parser: 基于JavaScript的轻量级 用户代理字符串解析器:
点击右上角即可分享
微信分享提示