A Closer Look At Generics
Generic Types ("Generics") can be tricky to wrap your head around.
But indeed, we are working with them all the time - one of the most prominent examples is an array.
Consider this example array:
let numbers = [1, 2, 3];
Here, the type is inferred, b...
omarsaade.hashnode.dev2 min read