typescript user defined abstract data type code example
Example 1: type gurad
1) Type guards narrow down the type of a variable within a conditional block.
2) Use the 'typeof' and 'instanceof operators to implement type guards in the
conditional blocks.
//example(typeof)
if (typeof a === 'number' && typeof b === 'number') {
return a + b;
}
(instanceof)
if (job instanceof detail){
jobless = false ;
}
Example 2: ts create nex field
var obj:any = {}
obj.prop = 5;