admin管理员组

文章数量:1344300

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;

本文标签: javascriptHow to assign either a string or null to a variable TypeScriptStack Overflow