TypeScript Decision Making

this is way to to run the statements based on condition it satisfy. there are few way of implementing this. 1. If block: it will evaluate the boolean expression, if true, it will run the block statements inside it else it will skip. Syntax example code: 2. if else : it will evaluate the expression …

TypeScript Decision Making Read More »