码迷,mamicode.com
首页 > 其他好文 > 详细

001基本类型

时间:2019-01-27 13:09:09      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:tostring   基本数据   const   red   color   默认   ons   undefined   span   

 ***********

默认情况下null和undefined是所有类型的子类型。 就是说你可以把 null和undefined赋值给number类型的变量。

************

// 基本数据类型
const num: number = 111;
const str: string = ‘shasng‘;
const bool: boolean = true;
const define: undefined = undefined;

// 引用数据类型
const arr: number[] = [1, 2, 4];

//元组 Tuple

const tupleArr: [string, number, boolean] = [‘shang‘,1, true];

// 枚举
// enum Color {Red, Green, Blue}
// let c: Color = Color.Green;

enum Color {Red = 1, Green, Blue}
let colorName: string = Color[2];

// Any

let n: any = 1235;
n.toFixed(2);

let t: Object = 1235;
t.toString();

const arr1: any[]  = [1,"shsghhg", false]

// 默认情况下null和undefined是所有类型的子类型。 就是说你可以把 null和undefined赋值给number类型的变量。

//类型断言
const x: any = [1,2,3];
const len: number = (x as string).length;

 

001基本类型

标签:tostring   基本数据   const   red   color   默认   ons   undefined   span   

原文地址:https://www.cnblogs.com/shangyueyue/p/10325814.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!