free online code editor
free online code editor
online vscode
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 发布文章使用:只允许注册用户才可以访问!
本文首发于博客园,作者:xgqfrms,原文链接:https://www.cnblogs.com/xgqfrms/p/12899508.html
未经授权禁止转载,违者必究!

浙公网安备 33010602011771号