najibbala.hashnode.devUse of logical operators in javascriptThere are various logical operators in javascript, i) Nullish coalescing operator (??) ii)Logical OR operator (||) iii)Logical AND operator (&&) There are more but we are going to be discussing only these three today. Nullish coalescing (??): The nul...Apr 2, 2023·1 min read
najibbala.hashnode.devQuiz maker for small schoolsInspiration for project With the increasing number of schools in my locality, many school now want to adopt modern ways of testing their students. I thought to my self since I have been coding for a while now I should be able to come up with a soluti...Oct 1, 2022·2 min read
najibbala.hashnode.devUsing object of object type in TypescriptAs you may already know it is quite easy to specify an Array of objects in your type in typescript. Let me give an example. type People={ name:string; age:number; height:string; } const peopleArray:People[] = [{ name: "john doe", age: 16, ...Sep 29, 2022·3 min read