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 badges2 Answers
Reset to default 7You 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
版权声明:本文标题:javascript - How to assign either a string or null to a variable TypeScript - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743742297a2531117.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论