TypeScript Tuples
TUPLES is the data structure that store element of different data type unlike array. example of tuple with number and string value: Destructuring a Tuple In the above code, x will be assigned as 10 and y will be assigned with “shri”. it destructure the tuple into individuals value shown above. summary of some common …