cloudaffle.hashnode.devOne Way Data Tables And VariablesWhat Are One-Way Data Tables? One-way data tables are a statistical tool used to analyze the impact of onevariable on another variable. A one-way data table consists of one input celland one or more result cells. The input cell contains the variable ...Apr 7, 2023ยท1 min read
cloudaffle.hashnode.devLearning The Linux Command Line Is Not OptionalSomeone starting with software development often would argue about how learning to use the command line is essential, and many would call it counterproductive. I started learning how to use the command line just so that it looked so cool, only to rea...Mar 11, 2023ยท5 min read
cloudaffle.hashnode.devRecord<Keys, Type> Utility Types in TypeScriptThe Record type is a utility type that can be used to combine two types. It allows you to create an object type whose property keys are of a specific type and whose property values are of another specific type. Syntax Let's have a look at the Syntax ...Mar 11, 2023ยท5 min read
cloudaffle.hashnode.devHow Do TypeScript Utility Types Work Behind The ScenesWhat are Utility Types? Utility types can be considered as type functions that take one or more types as input and produce a new type as output. These types can be used to transform, combine, or manipulate other types in various ways. TypeScript prov...Mar 11, 2023ยท3 min read
cloudaffle.hashnode.devUnderstanding Utility Types in TypeScriptWhat are Utility Types? Utility types are predefined generic types that can perform common type transformations in TypeScript. These types are built into TypeScript and are used to manipulate other types and create new types. Utility types can create...Mar 10, 2023ยท3 min read