10 Advanced TypeScript Questions For An Interview — With Answers

Check if your candidate is capable of answering these more advanced TypeScript questions

Jeroen Ouwehand
Level Up Coding
Published in
3 min readJul 3, 2019

--

1 — What does the ‘Omit’ type do?

Answer: It’s a new type where you can define some properties to be excluded from the original type.

--

--