Transcript
00:00 Some of the checks that we did in that last step were a little bit kind of annoying and sometimes it's actually pretty common for you to want to do some kind of type checker or a guard on that if statement. And so we're gonna write type guards. These are special functions with a special syntax that you're going to use, that is basically like making your own version of array dot is array, or functions like that. So array dot is array is a type of type guard that, allows you to provide a value, and it gives you back true or false on whether the provided value is an array. We're gonna do the same thing for some of the types that we did in the last step.
00:41 So let's jump into this one. We'll see you when you're done.
