Jumpstart on advance typescript Part 2
This is continuation of my previous blog where I was trying to introduce some advance Typescript concepts
Type Guards
To better understand this lets look at below code block
const numbers = [0, 1, 2, [3, 4], 5, 6, [7], [8], 9]
function flatten(array...
blog.iammanishkumarr.dev9 min read