博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[TypeScript] Distinguishing between types of Strings in TypeScript
阅读量:5878 次
发布时间:2019-06-19

本文共 341 字,大约阅读时间需要 1 分钟。

In JavaScript, many libraries use string arguments to change behavior. In this lesson we learn how Typescript catches string related errors at compile time by assigning a string literal as a type.

 

type whiteList = "DOG" | "CAT" | "BIRD";function allowToTake(num: number, animal: whiteList): string{  return `You can bring ${num} ${animal}`;}

 

转载地址:http://igdix.baihongyu.com/

你可能感兴趣的文章
现实世界的 Windows Azure: IT 公司提高其旗舰产品,为更多客户提供云解决方案
查看>>
main方法中注入Spring bean
查看>>
解决service层无法注入
查看>>
了解lpk.dll是什么病毒以及lpk.dll病毒专杀方法
查看>>
接口隔离原则(设计模式4)
查看>>
StarUML使用说明-指导手册
查看>>
LeetCode--020--括号匹配(java版)
查看>>
LeetCode--083--删除排序链表中的重复元素
查看>>
LeetCode--206--反转链表
查看>>
ios推送通知相关开源项目
查看>>
软件工程第三次作业(2019)
查看>>
hibernate的组成部分
查看>>
4.1 Vivado使用技巧(2):使用Vivado DocNav
查看>>
适配器模式(Adapter pattern)
查看>>
Jmeter建立JDBC链接以及扩展
查看>>
php加入多维数组中,在PHP中添加到多维数组
查看>>
recurdyn matlab版本,基于Matlab与RecurDyn的电传动履带车辆的联合仿真
查看>>
mysql 存储过程无效,mysql导入存储过程无法使用
查看>>
matlab list函数参数,Matlab 函数参数汇总
查看>>
云im php,网易云IM
查看>>