最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to assign either a string or null to a variable TypeScript - Stack Overflow

programmeradmin1浏览0评论

I have a variable which either can take string or null, currently i am defining all the type values hardcoded as below

  let name : 'Ram' | 'Shyam' | 'Paul' | null = null;
  name = customer.name as 'Ram' | 'Shyam' | 'Paul' | null;

Here, the values are hardcoded, how can i make it generic so that it can intake anything old and new both.

I have a variable which either can take string or null, currently i am defining all the type values hardcoded as below

  let name : 'Ram' | 'Shyam' | 'Paul' | null = null;
  name = customer.name as 'Ram' | 'Shyam' | 'Paul' | null;

Here, the values are hardcoded, how can i make it generic so that it can intake anything old and new both.

Share Improve this question asked Aug 25, 2020 at 6:04 LaraLara 3,0319 gold badges44 silver badges81 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 7

You can check this one

type MyValue = "A" | "B" | "C"
type Nullable<T>  = T | null

const a: Nullable<MyValue> = null

Just declare a custom type

type names = 'Ram' | 'Shyam' | 'Paul' | null;

let name: names = null;
发布评论

评论列表(0)

  1. 暂无评论