Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR TYPESCRIPT

typescript maybe type

// for optional values you can use ? operator
interface Example {
	name: string,
  	age ?: 12
}

// for type keyword, this works as or condition
type Example2 = "string" | undefined
 
PREVIOUS NEXT
Tagged: #typescript #type
ADD COMMENT
Topic
Name
1+3 =